概述
//设定Cookie值
function SetCookie(name, value) {
var expdate = new Date(); var argv = SetCookie.arguments;
var argc = SetCookie.arguments.length;
var expires = (argc > 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null; var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false; if (expires != null) expdate.setTime(expdate.getTime() + (expires * 1000));
document.cookie = name + "=" + escape(value) + ((expires == null) ? "" : ("; expires=" + expdate.toGMTString()))
+ ((path == null) ? "" : ("; path=" + path))
+ ((domain == null) ? "" : ("; domain=" + domain))
+ ((secure == true) ? "; secure" : "");
}
//取Cookie值
function GetCookieVal(offset)//获得Cookie解码后的值
{
var endstr = document.cookie.indexOf(";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
转载于:https://www.cnblogs.com/wangtiantian/p/4987378.html
最后
以上就是冷艳心情为你收集整理的jquery实现cookie存取值的全部内容,希望文章能够帮你解决jquery实现cookie存取值所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复