可兼容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 相关文章推荐
学习ExtJS TextField常用方法
Oct 07 Javascript
js简单实现根据身份证号码识别性别年龄生日
Nov 29 Javascript
JS中window.open全屏命令解析及使用示例
Dec 11 Javascript
jQuery中的jQuery()方法用法分析
Dec 27 Javascript
简介JavaScript中的italics()方法的使用
Jun 08 Javascript
基于jQuery实现二级下拉菜单效果
Feb 01 Javascript
node.js cookie-parser 中间件介绍
Jun 06 Javascript
BootStrap tab选项卡使用小结
Aug 09 Javascript
JavaScript算法教程之sku(库存量单位)详解
Jun 29 Javascript
小程序scroll-view组件实现滚动的示例代码
Sep 20 Javascript
微信小程序 网络通信实现详解
Jul 23 Javascript
JavaScript实现多层颜色选项卡嵌套
Sep 21 Javascript
基于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
ajax取消挂起请求的处理方法
2013/03/18 PHP
AES加解密在php接口请求过程中的应用示例
2016/10/26 PHP
javascript之AJAX框架使用说明
2010/04/24 Javascript
事件模型在各浏览器中存在差异
2010/10/20 Javascript
JS随机漂浮广告代码具体实例
2013/11/19 Javascript
从js向Action传中文参数出现乱码问题的解决方法
2013/12/29 Javascript
JavaScript字符串对象toLowerCase方法入门实例(用于把字母转换为小写)
2014/10/17 Javascript
删除Javascript Object中间的key
2014/11/18 Javascript
JS实现超炫网页烟花动画效果的方法
2015/03/02 Javascript
jQuery选择id属性带有点符号元素的方法
2015/03/17 Javascript
jQuery animate easing使用方法图文详解
2016/06/17 Javascript
iOS和Android用同一个二维码实现跳转下载链接的方法
2016/09/28 Javascript
在JS中a标签加入单击事件屏蔽href跳转页面
2016/12/16 Javascript
js单页hash路由原理与应用实战详解
2017/08/14 Javascript
vue之父子组件间通信实例讲解(props、$ref、$emit)
2018/05/22 Javascript
微信小程序之判断页面滚动方向的示例代码
2018/08/30 Javascript
jQuery操作attr、prop、val()/text()/html()、class属性
2019/05/23 jQuery
vue中实现图片压缩 file文件的方法
2020/05/28 Javascript
详解vue组件之间的通信
2020/08/30 Javascript
[01:14]英雄,所敬略同——2018完美盛典宣传视频4K
2018/12/05 DOTA
在Django中管理Users和Permissions以及Groups的方法
2015/07/23 Python
深入讲解Java编程中类的生命周期
2016/02/05 Python
python使用mysql的两种使用方式
2018/03/07 Python
欧洲最大的拼图游戏商店:JigsawPuzzle.co.uk
2018/07/04 全球购物
中国汽车租赁行业头部企业:一嗨租车
2019/05/16 全球购物
Fossil德国官网:化石手表、手袋、珠宝及配件
2019/12/07 全球购物
数据库连接池的工作原理
2012/09/26 面试题
高中体育教学反思
2014/01/29 职场文书
《画风》教学反思
2014/04/16 职场文书
初中班级口号
2014/06/09 职场文书
科技节口号
2014/06/19 职场文书
房屋所有权证明
2014/10/20 职场文书
2015年公务员转正工作总结
2015/04/24 职场文书
小学四年级班主任工作经验交流材料
2015/11/02 职场文书
优秀共产党员事迹材料2016
2016/02/29 职场文书
创业计划书之蛋糕店
2019/08/29 职场文书