我在我的js文件中使用此代码进行重定向
setTimeout('top.location=\'http://google.com/?123\';', 1000);
问题是我的js文件执行很多次但我想在js文件中添加一些cookie代码,以便我的访问者不会一次又一次地重定向。那么只有一次执行这个js文件的cookie代码是什么,除非我手动更改cookie
答案 0 :(得分:0)
请记住使用此功能创建代码,按顺序使用这些步骤。您可以检查您的js参考,了解如何执行这些步骤。我希望这能指出你正确的方向。
答案 1 :(得分:0)
未经过测试
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
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(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
if(readCookie('redirected')!=true)
{
createCookie('redirected',true,0); // cookie will be trashed after the browser closed.
setTimeout('top.location=\'http://google.com/?123\';', 1000);
}