gpt4 book ai didi

javascript - 如何制作 if 语句来检查 cookie 是否过期

转载 作者:行者123 更新时间:2023-12-03 03:13:22 25 4
gpt4 key购买 nike

我有一个程序需要检查 cookie。当 cookie 过期时,我希望它显示提示并发出警报。

 if (document.cookie == '' || document.cookie == null || document.cookie == undefined) {  
var site = prompt("Please enter a valid url:", "http://");
document.cookie = "url=;"
document.cookie = 'expires=Thu, 01 Jan 2030 00:00:00 GMT';
alert("The cookie is expired.");
}

但似乎不起作用。

最佳答案

如果你在谷歌上搜索,你会很容易找到一些基本的获取/设置函数,这是sample link

function getCookie(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for(var i = 0; i <ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return "";
}

那么你可以像下面这样使用它

if(getCookie(nameOfYourCookie) == "")
{
//Show Alert,
//Set cookie
}

关于javascript - 如何制作 if 语句来检查 cookie 是否过期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46869634/

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