如何在输入页面自动打开模式弹出窗口
当访问者第一次请求该页面时,有人可以打开模式弹出窗口吗?此后,cokie 会将其隐藏。我需要做一个调查。他们回答一个问题并被重定向,因此不需要关闭按钮或提交按钮。我正在使用 php。
感谢您的帮助。 布鲁斯
Can someone me to open the modal popup when a vistor requests the page for the very first time, a cokie hides it thereafter. I need to do a survey. They answer one question and are redirected so a close button or submit button is not needed. Im using php.
Thanks for the help.
Bruce
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用 jQuery 吗?我会使用 jQuery + jQuery-UI (http://jqueryui.com/demos/dialog/)
你所要做的就是用弹出窗口的标记定义一个 Div 元素,然后调用 jQuery UI 使用的弹出方法在文档就绪事件中。
例如
,
从 CDN(例如 google 的)加载 jQuery 和 jQuery-UI 是个好主意,请使用这些地址:
希望这会有所帮助
Are you allowed to use jQuery? I would user jQuery + jQuery-UI (http://jqueryui.com/demos/dialog/)
What you have to do is just define a Div element with the markup of the popup, and then invoke the popup method used by jQuery UI in the document ready event.
e.g.
and
Also it is a good idea to load jQuery and jQuery-UI from a CDN, like google's, use these addresses:
Hope this helps