可兼容IE的获取及设置cookie的jquery.cookie函数方法


Posted in Javascript onSeptember 02, 2013

前言

在开发过程中,因为之前有接触过Discuz,就直接拿其common.js里面的getcookie和setcookie方法来使用,做到后面在使用IE来测试的时候,发现这两个方法子啊IE下不起作用,就请教同事,这样就有了jquery.cookie.js文件的由来,里面的代码很少,我贴在下面,方便以后使用和研究吧。

源码

/** 
* Cookie plugin 
* 
* Copyright (c) 2006 Klaus Hartl (stilbuero.de) 
* Dual licensed under the MIT and GPL licenses: 
* http://www.opensource.org/licenses/mit-license.php 
* http://www.gnu.org/licenses/gpl.html 
* 
*/ /** 
* Create a cookie with the given name and value and other optional parameters. 
* 
* @example $.cookie('the_cookie', 'the_value'); 
* @desc Set the value of a cookie. 
* @example $.cookie('the_cookie', 'the_value', {expires: 7, path: '/', domain: 'jquery.com', secure: true}); 
* @desc Create a cookie with all available options. 
* @example $.cookie('the_cookie', 'the_value'); 
* @desc Create a session cookie. 
* @example $.cookie('the_cookie', null); 
* @desc Delete a cookie by passing null as value. 
* 
* @param String name The name of the cookie. 
* @param String value The value of the cookie. 
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes. 
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. 
* If a negative value is specified (e.g. a date in the past), the cookie will be deleted. 
* If set to null or omitted, the cookie will be a session cookie and will not be retained 
* when the the browser exits. 
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). 
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). 
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will 
* require a secure protocol (like HTTPS). 
* @type undefined 
* 
* @name $.cookie 
* @cat Plugins/Cookie 
* @author Klaus Hartl/klaus.hartl@stilbuero.de 
*/ 
/** 
* Get the value of a cookie with the given name. 
* 
* @example $.cookie('the_cookie'); 
* @desc Get the value of a cookie. 
* 
* @param String name The name of the cookie. 
* @return The value of the cookie. 
* @type String 
* 
* @name $.cookie 
* @cat Plugins/Cookie 
* @author Klaus Hartl/klaus.hartl@stilbuero.de 
*/ 
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; 
} 
};
Javascript 相关文章推荐
用javascript添加控件自定义属性解析
Nov 25 Javascript
JQuery处理json与ajax返回JSON实例代码
Jan 03 Javascript
JavaScript实现大数的运算
Nov 24 Javascript
jQuery实现的tab标签切换效果示例
Sep 05 Javascript
深入理解AngularJS中的ng-bind-html指令
Mar 27 Javascript
vue.js利用defineProperty实现数据的双向绑定
Apr 28 Javascript
AngularJS基于factory创建自定义服务的方法详解
May 25 Javascript
JS实现的简单表单验证功能完整实例
Oct 14 Javascript
深入理解requireJS-实现一个简单的模块加载器
Jan 15 Javascript
微信小程序实现图片上传功能
May 28 Javascript
jQuery实现参数自定义的文字跑马灯效果
Aug 15 jQuery
jQuery实现动态添加和删除input框实例代码
Mar 26 jQuery
基于MVC3方式实现下拉列表联动(JQuery)
Sep 02 #Javascript
javascript模块化是什么及其优缺点介绍
Sep 02 #Javascript
火狐下table中创建form导致两个table之间出现空白
Sep 02 #Javascript
js的alert弹出框出现乱码解决方案
Sep 02 #Javascript
javascript中的window.location.search方法简介
Sep 02 #Javascript
js Math 对象的方法
Sep 01 #Javascript
javascript ready和load事件的区别示例介绍
Aug 30 #Javascript
You might like
德生PL330的评价与改造
2021/03/02 无线电
php删除页面记录 同时刷新页面 删除条件用GET方式获得
2012/01/10 PHP
php排序算法(冒泡排序,快速排序)
2012/10/09 PHP
PHP使用DOM和simplexml读取xml文档的方法示例
2017/02/08 PHP
javascript 浏览器判断 绑定事件 arguments 转换数组 数组遍历
2009/07/06 Javascript
Javascript图像处理思路及实现代码
2012/12/25 Javascript
jquery $.each() 使用小探
2013/08/23 Javascript
Javascript表单验证要注意的事项
2014/09/29 Javascript
使用 js+正则表达式为关键词添加链接
2014/11/11 Javascript
jQuery中each()方法用法实例
2014/12/27 Javascript
JavaScript实现俄罗斯方块游戏过程分析及源码分享
2015/03/23 Javascript
深入浅析AngularJS中的module(模块)
2016/01/04 Javascript
在AngularJS框架中处理数据建模的方式解析
2016/03/05 Javascript
js实现统计字符串中特定字符出现个数的方法
2016/08/02 Javascript
详解vue-cli 脚手架项目-package.json
2017/07/04 Javascript
vue.js如何更改默认端口号8080为指定端口的方法
2017/07/14 Javascript
js Dom实现换肤效果
2017/10/21 Javascript
详解Vue组件实现tips的总结
2017/11/01 Javascript
JavaScript Canvas编写炫彩的网页时钟
2019/10/16 Javascript
详解js中的原型,原型对象,原型链
2020/07/16 Javascript
js实现弹窗猜数字游戏
2020/11/26 Javascript
在Docker上部署Python的Flask框架的教程
2015/04/08 Python
目前最全的python的就业方向
2018/06/05 Python
Django 多语言教程的实现(i18n)
2018/07/07 Python
Python使用random.shuffle()打乱列表顺序的方法
2018/11/08 Python
python中enumerate() 与zip()函数的使用比较实例分析
2019/09/03 Python
双向RNN:bidirectional_dynamic_rnn()函数的使用详解
2020/01/20 Python
联想香港官方网站及网店:Lenovo香港
2018/04/13 全球购物
俄罗斯电动工具和设备购物网站:Vseinstrumenti.ru
2020/11/12 全球购物
热能动力工程毕业生自荐信
2013/11/07 职场文书
《诚实与信任》教学反思
2014/04/10 职场文书
药剂专业自荐信范文
2014/04/16 职场文书
学校综治宣传月活动总结
2014/07/02 职场文书
2014年自愿离婚协议书
2014/10/10 职场文书
教师个人总结范文
2015/02/11 职场文书
2015年度个人业务工作总结
2015/04/27 职场文书