我有一个cookie:
命名: 的myCookie
值: ID = 5
使用$.cookie('mycookie')
并记录时:
var testCookie = $.cookie('mycookie');
console.log(testCookie);
控制台中仅显示“ ID ”。 “ = 5 ”未显示。这是插件的限制,还是我错过了某些内容以便显示整个“ ID = 5 ”值?
提前致谢!
function getCookie(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;
}
// Get my cookie
var cookie = getCookie('mycookie');
console.log(cookie);
我可以在控制台中返回“ ID = 5 ”。
看起来它可能是插件的限制,除非我错过了一个选项或什么......