博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery操作cookie
阅读量:6655 次
发布时间:2019-06-25

本文共 2979 字,大约阅读时间需要 9 分钟。

jQuery.cookie = function(name, value, options) {    if (typeof value != 'undefined') { // name and value given, set cookie        options = options || {};        if (value === null) {            value = '';            options.expires = -1;        }        var expires = '';        if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {            var date;            if (typeof options.expires == 'number') {                date = new Date();                date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));            } else {                date = options.expires;            }            expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE        }        var path = options.path ? '; path=' + options.path : '';        var domain = options.domain ? '; domain=' + options.domain : '';        var secure = options.secure ? '; secure' : '';        document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');    } else { // only name given, get cookie        var cookieValue = null;        if (document.cookie && document.cookie != '') {            var cookies = document.cookie.split(';');            for (var i = 0; i < cookies.length; i++) {                var cookie = jQuery.trim(cookies[i]);                // Does this cookie string begin with the name we want?                if (cookie.substring(0, name.length + 1) == (name + '=')) {                    cookieValue = decodeURIComponent(cookie.substring(name.length + 1));                    break;                }            }        }        return cookieValue;    }};function getcookie(name) {var cookie_start = document.cookie.indexOf(name);var cookie_end = document.cookie.indexOf(";", cookie_start);return cookie_start == -1 ? '' : unescape(document.cookie.substring(cookie_start + name.length + 1, (cookie_end > cookie_start ? cookie_end : document.cookie.length)));}function setcookie(cookieName, cookieValue, seconds, path, domain, secure) {    var expires = new Date();    expires.setTime(expires.getTime() + seconds);    document.cookie = escape(cookieName) + '=' + escape(cookieValue)                                            + (expires ? '; expires=' + expires.toGMTString() : '')                                            + (path ? '; path=' + path : '/')                                            + (domain ? '; domain=' + domain : '')                                            + (secure ? '; secure' : '');}

使用方法

提供方便方法操作cookie : 

$.cookie('the_cookie'); // 获得cookie
$.cookie('the_cookie', 'the_value'); // 设置cookie
$.cookie('the_cookie', 'the_value', { expires: 7 }); //设置带时间的cookie  7天
$.cookie('the_cookie', '', { expires: -1 }); // 删除
$.cookie('the_cookie', null); // 删除 cookie

设置cookie的名值对,有效期,路径,域,安全

$.cookie(’name’, ‘value’, {expires: 7, path: ‘/’, domain: ‘jquery.com’, secure: true});

转载于:https://www.cnblogs.com/Yellowshorts/p/3610697.html

你可能感兴趣的文章
Array.prototype.slice.call()为什么能将类数组转换为数组
查看>>
matlab练习程序(粒子群优化PSO)
查看>>
POJ1157 LITTLE SHOP OF FLOWERS
查看>>
防盗链与springboot代理模式(图片文件转发)
查看>>
【2019-07-01】正确的观念
查看>>
套接字文件描述符消耗小细节分析
查看>>
这不是任何人的退役文
查看>>
mysql 拼接
查看>>
hdu1372(BFS)
查看>>
javascript定义对象写法-------作者:虫虫3000 日期:2009-9-7 10:14:9
查看>>
质检总局-版权局
查看>>
Delphi TstringList Stringlist的特殊用法
查看>>
python中快捷键f5_python shell(用的IDIE)程序编辑器中、菜单Edit→怎么没有Run Script选项、快捷键Ctrl+F5也没有、?...
查看>>
eu指什么_电力(EU)是什么意思
查看>>
乒乓球比赛赛程_乒乓球赛程_如何组织一场乒乓球赛
查看>>
ldap 389同步ad上的用户_关于LDAP接入设计方式的详细讲解
查看>>
java redis 自增计数器_【99期】中高级开发面试必问的Redis,看这篇就够了!
查看>>
evt dvt pvt mp代表什么阶段_什么是人设:抖音IP人设的商业价值你知道吗?
查看>>
天锋w2019_不知道为什么那么多人喜欢三星W2019,直到入手这款天锋W2019手机
查看>>
pcm输出还是源码输出_日本成辣条最大进口国?网友:文化输出还是得靠卫龙
查看>>