How to Delete Session Cookie?

前端 未结 6 1870
时光取名叫无心
时光取名叫无心 2020-11-30 03:22

How to dynamically, via javascript, delete a session cookie, without manually restarting the browser?

I read somewhere that session cookie is retained in browser mem

6条回答
  •  Happy的楠姐
    2020-11-30 04:04

    Deleting a jQuery cookie:

    $(function() {
        var COOKIE_NAME = 'test_cookie';
        var options = { path: '/', expires: 10 };
        $.cookie(COOKIE_NAME, 'test', options); // sets the cookie
        console.log( $.cookie( COOKIE_NAME)); // check the value // returns test
        $.cookie(COOKIE_NAME, null, options);   // deletes the cookie
        console.log( $.cookie( COOKIE_NAME)); // check the value // returns null
    });
    

提交回复
热议问题