如何在Cookie中设置当前页面网址?现在我正在使用jQuery.cookie("previousUrl", window.location.href, {path:"/"});
,但正在设置的是点击的网址。如何设置当前页面网址而不是点击的网址?
干杯,
麦克
答案 0 :(得分:0)
也许不是您正在寻找的答案,但您尝试过document.referrer
吗?在目标页面上,它应该为您提供用户来自的页面,而不需要cookie。
答案 1 :(得分:0)
试试这个,
var pathname = window.location.pathname;
jQuery.cookie("currentPath", pathName);
希望这有帮助。
答案 2 :(得分:0)
在这里下载jQuery cookie插件:github.com/carhartl/jquery-cookie
// setting the cookie
$.cookie("previousUrl", "www.example.com/page/1");
$.cookie("currentUrl", "www.example.com/page/2");
// getting the cookie
alert( $.cookie("previousUrl") );
alert( $.cookie("currentUrl") );
维护这两个网址,并根据需要不断更新。现在你的previousUrl不会干扰currentUrl。