我正在对我的 javascript 代码进行一些帮助。恐怕我没有 JS 的经验,只有 html 和 css。我的网站上有一个 cookie 政策通知,是我从朋友那里安装的。我想知道是否有人可以告诉我我的代码中当前的到期日期(因为我不知道)。如果我的代码已经不合适,是否有人可以推荐欧盟 Cookie 法政策的到期时间?
下面的代码:
var euCookie = {
g: function(){
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1, c.length);
if (c.indexOf("euCookieLaw") == 0) return c.substring("euCookieLaw".length,c.length);
}
return null;
},
s: function(value){
var date = new Date();
date.setTime(date.getTime()+315532800000);
document.cookie = "euCookieLaw="+value+"; expires="+date.toGMTString()+"; path=/";
}