1、设置一二级域名共用的cookie:设置domain为一级域名,可一、二级域名共用的cookie

$.cookie('f_city','北京|101010100|,锦州|101070701|',{expires: 999, path: '/',domain: 'weather.com.cn'})

2、删除同名不同域的cookie (一个页面中.weather.com.cn域 和 www.weather.com.cn域下,都有f_city这个值,怎么删除其中任一)

$.cookie('f_city',null,{ path: '/'})   //删除当前域 www.weather.com.cn域下的 f_city
$.cookie('f_city',null,{ path: '/', domain: 'weather.com.cn'}) //删除 .weather.com.cn域下的 f_city

3、读取cookie:$.cookie('f_city'),当读取cookie键值为 f_city 的值时,如果有不同域下的多个f_city,则读取创建最早的f_city值,而与域无关

var cookie_f_city= $.cookie('f_city'); //读取cookie只有一种写法,不接受{domain}参数,也就是说,当有域同名参数时,只读创建最早的 f_city

=======================

下面是jq-cookie这个插件的源码

/**
* 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
*
*/ /**
*
*1、设置cookie的值,比如我们要设置变量名为userid对应值为123的cookie,代码如下:
* $.cookie('userid','123');
*
*2、新建一个cookie,并设置cookie的有效期 路径 域名等,代码如下:
* $.cookie('userid, '123', {expires: 7, path: '/', domain: 'jquery.com', secure: true});注意:如果去掉后面{}的参数,新建后将以默认设置生效。
*
*3、删除cookie,即把对应cookie值置为null,代码如下:
* $.cookie('userid', null);
*
*4、读取cookie,如读取变量名为userid的cookie值,代码如下:
* var uId= $.cookie('userid');
*
*/ /**
* 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;
}
};

var cookie_f_city= $.cookie('f_city'); //读取cookie只有一种写法,不接受{domain}参数,也就是说,当有域同名参数时,只读创建最早的 f_city

最新文章

  1. 使用eclipse搭建maven项目
  2. [Asp.net 5] Configuration-新一代的配置文件(接口定义与基础实现)
  3. 前端构建工具gulp介绍
  4. Bootstrap页面布局10 - BS表格
  5. CreateThread和_BeginThread的区别
  6. extern “C”调用测试与验证-2016.01.06
  7. pyinstall 使用笔记
  8. C# json to dynamic object
  9. 214. Shortest Palindrome
  10. IOS“多继承”
  11. 实现QQslidingMenu侧滑效果学习笔记
  12. hdu1520 第一道树形DP,激动哇咔咔!
  13. 编译Release版本小技巧
  14. java 显示目录下全部文件
  15. Windows Azure功能更新:弹性伸缩(autoscale)、监控报警、移动服务及网站服务商用、新的虚拟机镜像
  16. RestServer 2.0 正式版发布
  17. Windows系统下python3中安装pyMysql
  18. ubuntu设置静态ip
  19. 一个简单的 vue.js 实践教程
  20. .NetCore下使用Prometheus实现系统监控和警报 (六)进阶Grafana集成自定义收集指标

热门文章

  1. 24 AdminLTE 基础入门
  2. Python知识之 方法与函数、偏函数、轮询和长轮询、流量削峰、乐观锁与悲观锁
  3. RabbitMQ之消息模式(下)
  4. 工信部要求应用商店上新 App 检查 IPv6,这里有一份 IPv6 快速部署指南
  5. nginx+lua访问流量实时上报kafka
  6. C# Datatable、DataReader等转化json
  7. Spring @Autowired 注入为 null
  8. easy ui 弹框叠加问题
  9. Kubernetes Storage Persistent Volumes
  10. 【MySQL】数据库中间件Atlas