gpt4 book ai didi

javascript - 设置 cookie 在 2 小时后过期

转载 作者:数据小太阳 更新时间:2023-10-29 04:25:11 25 4
gpt4 key购买 nike

我有这段 JavaScript 代码:

function spu_createCookie(name, value, days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else
var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}

如何让 cookie 在 2 小时后过期?

最佳答案

如果你想使用相同类型的功能,将days参数转换为hours并传递2以获得2小时的到期时间日期。

function spu_createCookie(name, value, hours)
{
if (hours)
{
var date = new Date();
date.setTime(date.getTime()+(hours*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else
{
var expires = "";
}

document.cookie = name+"="+value+expires+"; path=/";
}

关于javascript - 设置 cookie 在 2 小时后过期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19068812/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com