jquery 在页面加载时显示覆盖 div
我想做一些我见过很多 onclick 示例的事情,但我想在用户访问该页面时加载一个 div。当您尝试插入超链接时,甚至 StackOverflow 也会执行此操作(onlcick)。
当使用 jquery 加载页面时,如何制作 div 覆盖?
顺便说一句,我已经搜索了相当多的内容,但找不到我的 jquery 简单头脑可以弄清楚的简单内容。
感谢您的帮助。
I want to do something that I've seen many examples of onclick, but I want to load a div when a user goes to the page. Even StackOverflow does this (onlcick) when you try to insert a hyperlink.
How can I make a div overlay when a page loads using jquery?
BTW, I've searched around a decent amount but can't find something simple that my jquery simple mind can figure out.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我认为你所说的是所谓的“模态”对话框。
有许多 jQuery 模式对话框插件。我最喜欢的是“简单模式”。
此处提供:http://www.ericmmartin.com/projects/simplemodal/
样品也很棒!
来自 simplemodal 网站:
I think what you're talking about is called a "modal" dialog.
There are many modal dialog plugins for jQuery. My favorite is "simplemodal".
It's available here: http://www.ericmmartin.com/projects/simplemodal/
The samples are great too!
From the simplemodal site:
查看 jQuery UI 对话框小部件。或者搜索“jQuery lightbox”。总体思路是使用绝对定位的
div
设置为display:none
,并在需要时将其更改为display:block
。Have a look at jQuery UI Dialog widget. Or search for "jQuery lightbox". The general idea is to use an absolutely positioned
div
set todisplay:none
, and change it to bedisplay:block
when required.那个帮助?
That help?
我将这两个图结合起来 如何使用 jQuery 和 模态框在页面加载时使用 jquery fancy box 和 cookie 插件。
I combined these two tuts How to create a stunning and smooth popup using jQuery and Modal box on page load with jquery fancy box and cookie plugin.
你可以试试这个。
查看完整教程并下载源代码。
You can try this.
See full tutorial and download source code.