码迷,mamicode.com
首页 > 其他好文 > 详细

intern cookie 纠结之二

时间:2015-08-14 13:34:47      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

1 $.cookie("username","") //设置cookie为空,长度为0
2 $.cookie("username",null) //设置cookie为"null",但是cookie还是存在,长度为4
3 $.cookie("username","",{expires:date}) //在指定时间销毁后,cookie值为undefined
4 username=="" //判断cookie值为不为空
5 username==null //判断cookie存在不存在
6 username==undefined //判断cookie存在不存在,同上

 

注意:$.cookie("username",null) 只能设置cookie为字符串null,不能真正删除元素。

综上所述,并未找到真正的设置cookie为null的方法,设置cookie为""是清空缓存的唯一解决办法。

intern cookie 纠结之二

标签:

原文地址:http://www.cnblogs.com/xiaoshan-coding/p/4729521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!