我绝对无法弄清楚这段代码有什么问题,
第一次迭代完美运行:
if (window.location.href != "http://fiddlehead.co/pages/verify-age") {
current_url = window.location;
document.cookie = 'landing_Cookie=' + escape(current_url) +';'
};
但我需要 cookie 在几秒钟内过期,这不起作用(没有创建 cookie):
if (window.location.href != "http://fiddlehead.co/pages/verify-age") {
function createCookie(name, value) {
var date = new Date();
date.setTime(date.getTime()+(30*1000));
var expires = "; expires="+date.toGMTString();
var current_url = window.location;
document.cookie = name+"="+escape(value)+expires+"; path=/";
};
createCookie('landing_Cookie', current_url);
};
任何帮助将不胜感激,这是我将头撞在桌子上的最后一个障碍!