页面上的 jQuery cookie 加载 fancybox 弹出窗口
我在 jQuery 中使用 fancybox 弹出窗口,
如何让用户每次进入我的网站时都出现该弹出窗口?最好每个会话显示一次......
示例
这是我如何实现/设置 cookie http://www.sohtanaka.com/web-design/examples/modal-window/index2.htm
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 fancybox 打开后使用以下命令创建 cookie:
但在打开 fancybox 之前始终检查 cookie 是否存在。不要设置“过期”值,这将强制在会话结束时删除 cookie。
编辑:
只需扩展您发布的代码:
如果页面加载并且脚本找不到 cookie,则 fancybox 会打开。如果页面加载并且 cookie 存在,则精美的框不会打开。
这里有一些关于页面加载时打开 fancybox 的更多信息。
Create a cookie once the fancybox opens using:
but always check for the existence of the cookie when before opening the fancybox. Do not set an 'expire' value and this will force the cookie to be deleted when the session ends.
Edit:
Just extending the code you have posted:
If the page loads and the script can't find the cookie, the fancybox opens. If the page loads and cookie exists, the fancy box doesn't open.
There is some further info about opening fancybox when the page loads here.
您需要使用 cookie 插件才能正常工作 - https://github.com/carhartl/jquery-cookie
然后使用 Digbyswift 发布的代码...效果很好!
You need to use the cookie plugin for this to work - https://github.com/carhartl/jquery-cookie
Then use the code Digbyswift posted... Works great!