隐藏正文直至内容加载 - 适用于 IE,但不适用于 Safari?
这是一个奇怪的东西——在 IE 中工作得很好,但在 Safari 中却不行。这是我的代码:
<script type="text/javascript">
$(document).ready(function(){
$('body').css('display', 'block');
});</script>
</head>
<body style="margin:0; display:none;">
目标是将正文显示设置为无,直到文档准备好为止。然后将显示属性更改为阻止。
知道我在这里做错了什么吗?
Here's a weird one -- something that works great in IE, but not in Safari. Here's my code:
<script type="text/javascript">
$(document).ready(function(){
$('body').css('display', 'block');
});</script>
</head>
<body style="margin:0; display:none;">
The goal is to set the body display to none until the document is ready. Then change the display property to block.
Any idea what I'm doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您希望页面在显示之前真正准备好(也加载图像),则应该使用 jQuery 的 .load()。另一方面,你不应该用 css 隐藏正文,因为关闭 javascript 的人会认为网站刚刚崩溃了。当然,除非您正在创建 100% 依赖于 javascript 的应用程序。
You should use jQuery's .load() if you want the page to really be ready (images loaded too) before displaying it. On the other hand, you shouldn't hide the body at all with css, as people with javascript turned off will assume the site just crashed. Unless of course you're creating a 100% javascript dependent application.
是的,您可以:
Yes, you can: