Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法找出饼干的当前年龄?
例如,我希望在 cookie 的前 30 天的每次访问中都显示一个叠加层,然后在 30 天后不再显示。
我正在使用 jquery cookie 插件设置一个过期日期很远的 cookie:
$.cookie("MyCookie", "true", { path: "/", expires: 9999 });
提前致谢。
与其尝试了解 cookie 的年龄,不如创建另一个?除了你的expires: 9999:
expires: 9999
$.cookie('monthCookie', true, { expires: 30 }); //later in code if ($.cookie('monthCookie')) { //show some content } else { //do other stuff }