gpt4 book ai didi

javascript - W3 学校 cookie 的删除 cookie 按钮

转载 作者:行者123 更新时间:2023-11-28 13:36:52 27 4
gpt4 key购买 nike

是的,我知道 W3school,你们都讨厌它。我有时也会这样做,但现在它对我有帮助。如何为他们的网站制作删除 cookie 按钮?他们网站上的 cookie 示例:

<!DOCTYPE html>
<html>
<head><script>

function setCookie(cname,cvalue,exdays)
{
var d = new Date();
d.setTime(d.getTime()+(exdays*24*60*60*1000));
var expires = "expires="+d.toGMTString();
document.cookie = cname+"="+cvalue+"; "+expires;
}

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

function checkCookie()
{
var user=getCookie("username");
if (user!="")
{
alert("Welcome again " + user);
}
else
{
user = prompt("Please enter your name:","");
if (user!="" && user!=null)
{
setCookie("username",user,30);
}
}
}

</script></head>

<body onload="checkCookie()"></body>
</html>

我尝试使用以下方法删除它:

<input type="button" value ="delte cookie" onclick= '"document.cookie = "username=; expires=Thu, 01 Jan 2000 00:00:00 GMT";'/>

但它不会删除cookie。我尝试过其他方法来删除一个网站的 cookie,但它们不起作用。有人有删除该网站 cookie 的按钮的 html 吗?

最佳答案

试试这个,

 <input type="button" value ="delete cookie" onclick= 'document.cookie = "username=; expires=Thu, 01 Jan 2000 00:00:00 GMT";'/>

关于javascript - W3 学校 cookie 的删除 cookie 按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20764417/

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