本文介绍了Javascript cookie删除的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我在Javascript document.cookie ='unseen'
中创建Cookie,当我离开此页面时,如何删除它?这是我在页面上创建的唯一Cookie。
解决方案
运行:
document.cookie ='unseen =; expires = thu,01-Jan-70 00:00:01 GMT;';
您不是删除它,而是告诉浏览器它已过期,因此会删除它。 / p>
If I create a cookie in Javascript document.cookie = 'unseen'
how do I delete it when I navigate away from this page? This is the only cookie I am creating on the page.
解决方案
Run this:
document.cookie = 'unseen=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
You're not deleting it, but telling the browser it's expired so it'll delete it.
这篇关于Javascript cookie删除的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!