我是靠谱客的博主 冷艳心情,最近开发中收集的这篇文章主要介绍jquery实现cookie存取值,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

//设定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存取值所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部