Cookie expiration date

前端 未结 7 1248
梦如初夏
梦如初夏 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:15

    You could try this:

    function SETcookie(){  
      var validity_days = 7;
      var expires = validity_days * 1000 * 60 * 60 * 24;
      var expires_date = new Date( today.getTime() + (expires) );
      document.cookie="Selected="+document.getElementById('myList').selectedIndex + ";expires=" + expires_date.toGMTString() + ";";
    }
    

提交回复
热议问题