基于Cookie的重定向功能

时间:2012-06-10 18:20:04

标签: php javascript cookies session-cookies

我在我的js文件中使用此代码进行重定向

setTimeout('top.location=\'http://google.com/?123\';', 1000);

问题是我的js文件执行很多次但我想在js文件中添加一些cookie代码,以便我的访问者不会一次又一次地重定向。那么只有一次执行这个js文件的cookie代码是什么,除非我手动更改cookie

2 个答案:

答案 0 :(得分:0)

请记住使用此功能创建代码,按顺序使用这些步骤。您可以检查您的js参考,了解如何执行这些步骤。我希望这能指出你正确的方向。

  1. 检查现有Cookie。
  2. 如果找到cookie,请不要重定向,否则重定向。 (这是您现有生产线的用武之地。)
  3. 根据您希望它们重定向的频率,设置一个具有超时值的Cookie。

答案 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);
}

Read here.