码迷,mamicode.com
首页 > Web开发 > 详细

jquery实现cookie存取值

时间:2015-11-23 08:48:13      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

//设定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));
}

jquery实现cookie存取值

标签:

原文地址:http://www.cnblogs.com/wangtiantian/p/4987378.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!