Cookie expiration date

前端 未结 7 1155
梦如初夏
梦如初夏 2020-12-30 01:43

I am not a programmer. I am trying to use a cookie script that remembers the last drop down menu selection.

I found a script that works but it does only a session co

7条回答
  •  礼貌的吻别
    2020-12-30 02:25

    Here's function which is 100% working and has no depreciated functions.

    function setCookie(variable, value, expires_seconds) {
        var d = new Date();
        d = new Date(d.getTime() + 1000 * expires_seconds);
        document.cookie = variable + '=' + value + '; expires=' + d.toGMTString() + ';';
    }
    

提交回复
热议问题