我必须在我的项目中创建,更新,删除,获取不同产品的cookie。那么有没有任何jquery插件。现在我用它来管理我项目中的cookie。
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;
}
function eraseCookie(name) {
createCookie(name, "", -1);
}
我需要一个插件,它还可以使用新产品及其价值更新以前的Cookie。
答案 0 :(得分:1)
有几个jQuery cookie插件。您可以尝试使用https://github.com/carhartl/jquery-cookie或https://plugins.jquery.com/cookie/,也可以尝试Google。并找到许多其他插件。