如何在输入页面自动打开模式弹出窗口

发布于 2024-10-06 01:03:11 字数 118 浏览 6 评论 0原文

当访问者第一次请求该页面时,有人可以打开模式弹出窗口吗?此后,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很坚强 2024-10-13 01:03:11

你可以使用 jQuery 吗?我会使用 jQuery + jQuery-UI (http://jqueryui.com/demos/dialog/)

你所要做的就是用弹出窗口的标记定义一个 Div 元素,然后调用 jQuery UI 使用的弹出方法在文档就绪事件中。

例如

$(document).ready(function() {$( "#dialog" ).dialog();});

<div id="dialog"> Here goes your survey form</div>

从 CDN(例如 google 的)加载 jQuery 和 jQuery-UI 是个好主意,请使用这些地址:

https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js

希望这会有所帮助

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.

$(document).ready(function() {$( "#dialog" ).dialog();});

and

<div id="dialog"> Here goes your survey form</div>

Also it is a good idea to load jQuery and jQuery-UI from a CDN, like google's, use these addresses:

https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js
https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.6/jquery-ui.min.js

Hope this helps

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文