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

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

时间:2017-09-27 20:43:06      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:方便   key   ext   6.2   max   color   day   eof   pat   

一.封装

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 方便调用

标签:方便   key   ext   6.2   max   color   day   eof   pat   

原文地址:http://www.cnblogs.com/CryOnMyShoulder/p/7603255.html

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