jquery 在页面加载时显示覆盖 div

发布于 2024-11-16 02:48:53 字数 209 浏览 1 评论 0原文

我想做一些我见过很多 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 技术交流群。

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

发布评论

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

评论(6

兔姬 2024-11-23 02:48:53

我认为你所说的是所谓的“模态”对话框。

有许多 jQuery 模式对话框插件。我最喜欢的是“简单模式”。

此处提供:http://www.ericmmartin.com/projects/simplemodal/
样品也很棒!

来自 simplemodal 网站:

作为链式 jQuery 函数,您可以在 jQuery 元素上调用 modal() 函数,并且将使用该元素的内容显示模式对话框。例如:

$("#element-id").modal();

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:

As a chained jQuery function, you can call the modal() function on a jQuery element and a modal dialog will be displayed using the contents of that element. For example:

$("#element-id").modal();

源来凯始玺欢你 2024-11-23 02:48:53

查看 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 to display:none, and change it to be display:block when required.

孤独岁月 2024-11-23 02:48:53
$(function(){ // this will run when the document.ready event fires
    $("#myDivOverlay").show(); // this will show a div whose id is myDivOverlay
});

那个帮助?

$(function(){ // this will run when the document.ready event fires
    $("#myDivOverlay").show(); // this will show a div whose id is myDivOverlay
});

That help?

一身仙ぐ女味 2024-11-23 02:48:53
 $(document).ready(function() {
      $thing = $("<div class='newDiv'>");
      $("body").append($thing);
 });
 $(document).ready(function() {
      $thing = $("<div class='newDiv'>");
      $("body").append($thing);
 });
彡翼 2024-11-23 02:48:53

你可以试试这个。

<script type="text/javascript">
$(document).ready(function()
{
    $(window).load(function()
        {
        $('#loading').fadeOut(3000); //fadeout the #loading div after 2000 milliseconds
        });

    $('#loading').css('height','100%'); //Put 100% height to the div

});
</script>

查看完整教程并下载源代码

You can try this.

<script type="text/javascript">
$(document).ready(function()
{
    $(window).load(function()
        {
        $('#loading').fadeOut(3000); //fadeout the #loading div after 2000 milliseconds
        });

    $('#loading').css('height','100%'); //Put 100% height to the div

});
</script>

See full tutorial and download source code.

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