我有饼干的问题。这是检索 cookie 的代码(并对其进行了一些操作):
var crtg_cookiename = "cto_zodiak";
var crtg_varname = "crtg_content";
function crtg_getCookie(c_name) {
var i, x, y, ARRCookies = document.cookie.split(";");
for ( i = 0; i < ARRCookies.length; i++) {
x = ARRCookies[i].substr(0, ARRCookies[i].indexOf("="));
y = ARRCookies[i].substr(ARRCookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == c_name) {
return unescape(y);
}
}
return '';
}
var crtg_content = crtg_getCookie(crtg_cookiename);
我在 chrome 和 firefox 控制台中尝试此代码:在 firefox 中我可以检索 cookie 并处理它,但在 chrome document.cookie 中不返回任何内容。有人知道原因吗?
提前致谢