标签: javascript jquery html cookies
我将使用javascript将cookie添加到特定页面,就像这个
document.cookie="username=John Doe";
我希望当用户更改该特定页面[导航到另一页面]时使它们过期。该怎么做
答案 0 :(得分:1)
只需将Cookie时间设置为过期日期:
document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 UTC";
请参阅:JavaScript Cookies