先加载整个页面,然后显示

发布于 2024-12-10 20:40:13 字数 162 浏览 0 评论 0原文

好吧,正如标题所说,我需要一些关于如何创建 Javascript 和/或 jQuery 脚本的帮助,该脚本将首先加载所有 html 页面元素(如 div 等),然后在页面达到 100 时显示页面% 已加载。我需要这个,因为现在在加载过程中,我的一个 div 向上移动,然后当页面加载时它会进入正确的位置。干杯!

Okey guys, so as the title says, i need some help about how i can create a Javascript and/or jQuery script which will 1st load all the html page elements (like divs etc.) and then display the page,once it is 100% loaded. I need this because right now, during the loading, one of my divs is moved up, and then when the page is loaded it goes into correct position. Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

给我一枪 2024-12-17 20:40:13

您可以通过最初将 body 的 css 显示设置为 none 并在 document.ready() 上显示它来实现此目的。

例如

HTML:

<body style="display:none">
</body>

脚本:

$(document).ready(function(){
    $("body").show();
});

You could do this by initially setting body's css display to none and show it on document.ready().

E.g.

HTML:

<body style="display:none">
</body>

Script:

$(document).ready(function(){
    $("body").show();
});
伴我老 2024-12-17 20:40:13

您可以使用客户端模板来构建页面,例如优秀的 jQuery.template 插件。

只是不要在服务器上构建页面,而是在客户端上构建页面:)

You could use clientside templates to build your page, for example the excelent jQuery.template plugin.

Simply don't build the page on the server, but do it on the client instead :)

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