【发布时间】:2011-03-25 22:19:12
【问题描述】:
我在这里阅读了很多关于 jQuery cookie 的问题并且知道有一个 jQuery cookie 插件 (jQuery cookie)。没有做太多调查,问题是:有没有办法确定cookie的到期日期?
来自 jquery.cookie 文档:
/**
* 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
*/
这个插件好像不行?
我想这样做的原因是我的 cookie 在 5 分钟不活动后过期,我想通知用户他们的会话即将从 Javascript 过期。
【问题讨论】: