我在mysite.com/index.html上有一个网站,并在mysite.com/test.html上复制了网站。
我需要为访问过mysite.com/test.html的访问者设置cookie,所以如果他在浏览器中输入mysite.com,他将在未来30天内被重定向到mysite.com/test.html。
我正在使用jquery.cookie.js插件
我在代码中放入了mysite.com/test.html:
$.cookie('test', 'test', { expires: 30, path: '/' })
在mysite.com/index.html
上$(function() {
if ($.cookie('test')) window.location.href = 'http://www.mysite.com/test.html';
});
我对js和jquery很新,所以请告诉我这是设置cookie,读取和重定向的正确方法。
谢谢。