用于弹出消息的 Jquery cookie 插件
当用户第一次访问我的主页时,我会弹出一条消息。我正在尝试让您在过去 15 天内访问过该页面时不会弹出该消息。我正在考虑使用 jquery.cookie 插件来实现这一目标,但不确定具体如何实现使用它。任何帮助将不胜感激。
我正在使用 colorbox 插件来显示弹出消息,代码如下:
$(function () {
$(window).bind('load',
function (e) {
window.setTimeout(function () {
$.colorbox({ opacity: 0.3, href: "popupQualify.aspx" });
}, /*timeout->*/2000);
});
});
I have a message that pops up when a user first visit my homepage. I'm trying to make that the message doesn't pop up if you have visited the page within the last 15 days. I'm thinking on using the jquery.cookie plugin to achieve that but not sure exactly how to use it. Any help will be greatly appreciated.
I'm using the colorbox plugin for my popup message, here is the code:
$(function () {
$(window).bind('load',
function (e) {
window.setTimeout(function () {
$.colorbox({ opacity: 0.3, href: "popupQualify.aspx" });
}, /*timeout->*/2000);
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查 cookie,如果不存在则显示弹出窗口。然后设置cookie的有效期为15天。
Check for the cookie, show the popup if it is not present. Then set the cookie with expiration of 15 days.
你可以使用这个功能:
you can use this function :