设为首页收藏本站

ZMX - IT技术交流论坛 - 无限Perfect,追求梦想 - itzmx.com

 找回密码
 注册论坛

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

用百度帐号登录

只需两步,快速登录

搜索
查看: 1608|回复: 0

jquery cookie用法(获取cookie值,删除cookie)

[复制链接]

签到天数: 36 天

[LV.5]常住居民I

发表于 2016/9/14 11:08 | 显示全部楼层 |阅读模式 |Google Chrome 45.0.2454.101|Windows 7
天涯海角搜一下: 百度 谷歌 360 搜狗 有道 雅虎 必应 即刻
  cookie在jquery中有指定的cookie操作类,下面我先来介绍我们在使用cookie操作类时的一些问题,然后介绍正确的使用方法。

  使用JQuery操作cookie时 发生取的值不正确的问题:

  结果发现cookie有四个不同的属性:

  名称,内容,域,路径

  关于cookie的path设置需要注意,如果不设置path:'/'的话,path则会根据目录自动设置[如:http://www.xxx.com/user/,path会被设置为 '/user']

  $.extend({

  /**

  1. 设置cookie的值,把name变量的值设为value

  example $.cookie(’name’, ‘value’);

  2.新建一个cookie 包括有效期 路径 域名等

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

  3.新建cookie

  example $.cookie(’name’, ‘value’);

  4.删除一个cookie

  example $.cookie(’name’, null);

  5.取一个cookie(name)值给myvar

  var account= $.cookie('name');

  **/

  cookieHelper: 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);

  // Does this cookie string begin with thehttp://www.9ask.cn/tj/ g begin with?

  if (cookie.substring(0, name.length + 1) == (name + '=')) {

  cookieValue = decodeURIComponent(cookie.substring(name.length + 1));

  break;

  }

  }

  }

  return cookieValue;

  }

  }

  });

  Jquery操作Cookie记录用户查询过信息
[发帖际遇]: 柠檬墨绿色 乐于助人,奖励 9 贡献. 幸运榜 / 衰神榜
欢迎光临IT技术交流论坛:http://bbs.itzmx.com/
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册论坛 新浪微博账号登陆用百度帐号登录

本版积分规则

手机版|Archiver|Mail me|网站地图|IT技术交流论坛 ( 闽ICP备13013206号-7 )

GMT+8, 2024/11/26 20:24 , Processed in 0.162865 second(s), 20 queries , MemCache On.

Powered by itzmx! X3.4

© 2011- sakura

快速回复 返回顶部 返回列表