jquery.cookie.js——jquery的cookie插件

一、JS文件

/*!
 * jQuery Cookie Plugin v1.4.1
 * https://github.com/carhartl/jquery-cookie
 *
 * Copyright 2006, 2014 Klaus Hartl
 * Released under the MIT license
 */
(function (factory) {
    if (typeof define === ‘function‘ && define.amd) {
        // AMD (Register as an anonymous module)
        define([‘jquery‘], factory);
    } else if (typeof exports === ‘object‘) {
        // Node/CommonJS
        module.exports = factory(require(‘jquery‘));
    } else {
        // Browser globals
        factory(jQuery);
    }
}(function ($) {

    var pluses = /\+/g;

    function encode(s) {
        return config.raw ? s : encodeURIComponent(s);
    }

    function decode(s) {
        return config.raw ? s : decodeURIComponent(s);
    }

    function stringifyCookieValue(value) {
        return encode(config.json ? JSON.stringify(value) : String(value));
    }

    function parseCookieValue(s) {
        if (s.indexOf(‘"‘) === 0) {
            // This is a quoted cookie as according to RFC2068, unescape...
            s = s.slice(1, -1).replace(/\\"/g, ‘"‘).replace(/\\\\/g, ‘\\‘);
        }

        try {
            // Replace server-side written pluses with spaces.
            // If we can‘t decode the cookie, ignore it, it‘s unusable.
            // If we can‘t parse the cookie, ignore it, it‘s unusable.
            s = decodeURIComponent(s.replace(pluses, ‘ ‘));
            return config.json ? JSON.parse(s) : s;
        } catch(e) {}
    }

    function read(s, converter) {
        var value = config.raw ? s : parseCookieValue(s);
        return $.isFunction(converter) ? converter(value) : value;
    }

    var config = $.cookie = function (key, value, options) {

        // Write

        if (arguments.length > 1 && !$.isFunction(value)) {
            options = $.extend({}, config.defaults, options);

            if (typeof options.expires === ‘number‘) {
                var days = options.expires, t = options.expires = new Date();
                t.setMilliseconds(t.getMilliseconds() + days * 864e+5);
            }

            return (document.cookie = [
                encode(key), ‘=‘, stringifyCookieValue(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(‘‘));
        }

        // Read

        var result = key ? undefined : {},
            // To prevent the for loop in the first place assign an empty array
            // in case there are no cookies at all. Also prevents odd result when
            // calling $.cookie().
            cookies = document.cookie ? document.cookie.split(‘; ‘) : [],
            i = 0,
            l = cookies.length;

        for (; i < l; i++) {
            var parts = cookies[i].split(‘=‘),
                name = decode(parts.shift()),
                cookie = parts.join(‘=‘);

            if (key === name) {
                // If second argument (value) is a function it‘s a converter...
                result = read(cookie, value);
                break;
            }

            // Prevent storing a cookie that we couldn‘t decode.
            if (!key && (cookie = read(cookie)) !== undefined) {
                result[name] = cookie;
            }
        }

        return result;
    };

    config.defaults = {};

    $.removeCookie = function (key, options) {
        // Must not alter options, thus extending a fresh object...
        $.cookie(key, ‘‘, $.extend({}, options, { expires: -1 }));
        return !$.cookie(key);
    };

}));

二、使用说明

1、在页面引入JS文件

<script src="jquery.cookie.js"></script>
<script src="jquery-1.11.1.min.js"></script>

2、写入cookie

写法:

$.cookie("写入的cookie名","写入的cookie值",{

expires:7,

path:"/",

domain:"地址",

secure:true

});

参数含义:

expires:

含义:有效期

单位:天

可写值:

数字,写入的数字为此cookie的有效时间

日期对象:直接写一个日期对象作为cookie的过期时间

默认:如果不写或写null则浏览器关闭后cookie删除

path:路径,默认是创建该cookie的页面路径

domain:域名属性,默认是创建该cookie的页面域名

secure:如果为true,那么此cookie的传输会要求一个安全协议,例如https

3、读取cookie

写法:$.cookie("读取的cookie名")

4、删除cookie

写法:$.cookie("删除的cookie名",null)

参数null:代表删除此cookie

.

原文地址:https://www.cnblogs.com/jianxian/p/8975352.html

时间: 2024-11-09 18:34:57

jquery.cookie.js——jquery的cookie插件的相关文章

jquery.fullPage.js全屏滚动插件

效果演示 网站   http://www.51xuediannao.com/demo.php 插件下载  http://www.51xuediannao.com/js/jquery/jquery.fullPage.html jquery.fullPage.js是一个全屏滚动插件,本文提供jquery.fullPage实例教程演示 看啥都不如看演示来的直观,走起! 基本滚动 http://www.51xuediannao.com/js/jquery/jquery.fullPage/index2.h

Jquery.validate.js表单验证插件的使用

作为一个网站web开发人员,以前居然不知道还有表单验证这样好呀的插件,还在一行行写表单验证,真是后悔没能早点知道他们的存在. 最近公司不忙,自己学习一些东西的时候,发现了validation的一个实例讲解应用.it's perfect. 首先记录一些使用过程中,爱犯的错误: 1>忘记给表单form添加id属性 2>input这些表单标签必须id属性和name属性名字一样.例如:<input type="text" id="name" name=&q

jQuery.validate.js表单验证插件

jQuery.validate.js表单验证插件的使用 效果: 代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-e

jQuery.form.js jQuery ajax异步提交form

jQuery.form.js是一个form插件,支持ajax表单提交和ajax文件上传. 官网下载地址:http://plugins.jquery.com/form/ API ajaxForm 增加所有需要的事件监听器,为ajax提交表单做准备.ajaxForm并不能提交表单.在document的ready函数中,使用ajaxForm来为ajax提交表单进行准备. 接受0个或1个参数.参数可以是一个回调函数,也可以是一个Options对象. $("#formid").ajaxForm(

jquery.ellipsis.js段落超出省略号插件

为了实现在段落尾部超出文字替换为省略号,自己写的插件,并作了简单的优化. 下面给出脚本演示页面及注释,在此之前介绍一下插件参数 1.lineNum:数字.限制段落的行数 2.english:布尔.英文模式字符偏小,需扩大筛选空间,实际源码中是通过此参数修改并覆盖OP_NUM: 3.OP_NUM: 数字.优化系数,一般不需要设置.默认1.3中文模式,1.3*2.5英文模式 演示页面HTML代码 <!doctype html> <html lang="cn"> &l

兼容IE8以下浏览器input表单属性placeholder不能智能提示功能,以及使用jquery.validate.js表单验证插件的问题处理

当前很多表单提示使用了表单属性placeholder,可这属性不兼容IE8以下的浏览器,我自己写了一个兼容处理js // 兼容IE8以下浏览器input不能智能提示功能 if(navigator.appName == "Microsoft Internet Explorer" && (navigator.appVersion.match(/7./i)=="7." || navigator.appVersion.match(/8./i)=="

当同时使用bootstrap-datepicker.js和jquery.validate.js这两款插件,至少要选择两次时间,才能验证成功的问题

当用 bootstrap-datepicker.js 这个插件选择时间,再用jquery.validate.js进行验证,当时间不为空时则验证通过.可能由于在时间插件弹出来时,input框的值发生改变,这时候就进行了验证,所以每次进行验证的都是bootstrap-datepicker.js选中日期的前一个值,比如:默认日期为空,当第一次选中日期,假设该日期为(2019-2-22),那么本次验证的值则为空,所以验证不通过:当再次选中时间,假设这次选中时间为(2019-2-23),才有前一个值为(2

jquery.cookie.js 使用

http://files.cnblogs.com/files/baixc/jquery.cookie.js jquery cookie.js 官方下载,一款优秀的 jquery 插件,提供了非常轻量级.简单.实用的操作 cookie 的方法,包括读写.删除等操作,jquery cookie 路径,jquery cookie 时间,jquery cookie 有效期,jquery cookie 读写. $.cookie('the_cookie'); // 获得cookie $.cookie('th

jquery.cookie.js使用

1.下载jquery.cookie.js 官网:http://plugins.jquery.com/cookie/ 或 http://pan.baidu.com/s/1mgynA8g 2.使用方法 复制代码 $.cookie('the_cookie'); // 获得cookie $.cookie('the_cookie', 'the_value'); // 设置cookie $.cookie('the_cookie', 'the_value', { expires: 7 }); //设置带时间的