以JQuery的方式封装 cookie 方便调用

Posted 迷神图卷

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以JQuery的方式封装 cookie 方便调用相关的知识,希望对你有一定的参考价值。

一.封装

jQuery.cookie = function (key, value, options) {

    // key and value given, set cookie...
    if (arguments.length > 1 && (value === null || typeof value !== "object")) {
        options = jQuery.extend({}, options);

        if (value === null) {
            options.expires = -1;
        }

        if (typeof options.expires === \'number\') {
            var days = options.expires, t = options.expires = new Date();
            t.setDate(t.getDate() + days);
        }

        return (document.cookie = [
            encodeURIComponent(key), \'=\',
            options.raw ? String(value) : encodeURIComponent(String(value)),
            options.expires ? \'; expires=\' + options.expires.toUTCString() : \'\', // use expires attribute, max-age is not supported by IE
            options.path ? \'; path=\' + options.path : \'\',
            options.domain ? \'; domain=\' + options.domain : \'\',
            options.secure ? \'; secure\' : \'\'
        ].join(\'\'));
    }

 

二.调用

//存cookie
jQuery.cookie("username","admin",{ expires:7 });
jQuery.cookie("password","123456",{ expires:7 });
//取cookie
var username = $.cookie("username");

 

expires:7设置过期时间为7天,-1为关闭浏览器后失效

三.备注

JQuery的版本为1.6.2。以上为个人笔记,可能不具备参考性。

本文连接:http://www.cnblogs.com/CryOnMyShoulder/p/7603255.html

以上是关于以JQuery的方式封装 cookie 方便调用的主要内容,如果未能解决你的问题,请参考以下文章

C#下利用WebBrowser完整获取COOKIE

自己封装myLocalStorage,使其有有效期

jquery Ajax 全局调用封装

前后分离模型之封装 Api 调用

前后分离模型之封装 Api 调用

前后分离模型之封装 Api 调用