先加载整个页面,然后显示
好吧,正如标题所说,我需要一些关于如何创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过最初将
body
的 css 显示设置为 none 并在document.ready()
上显示它来实现此目的。例如
HTML:
脚本:
You could do this by initially setting
body
's css display to none and show it ondocument.ready()
.E.g.
HTML:
Script:
您可以使用客户端模板来构建页面,例如优秀的 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 :)