Javascript cookie delete

后端 未结 4 2032
隐瞒了意图╮
隐瞒了意图╮ 2021-01-28 21:29

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

4条回答
  •  爱一瞬间的悲伤
    2021-01-28 21:33

    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.

提交回复
热议问题