OSX 10.7 $(window).width() 返回错误的值
我不是第一个注意到这一点的人,但自从 10.7 发布以来,他们实现了新样式的滚动条 $(window).width() 和 $(window).height() 不再正确返回浏览器的大小windows viewport ....
假设您想在加载时设置一个与浏览器窗口大小相同的div...
// load jquery //
<div id="bob">
</div>
<script>
$('#bob').width($(window).width()).height($(window).height());
</script>
最终发生的事情是这样的
对此我问WTF?
这是问题的示例
I can't be the first to notice this but ever since 10.7 came out and they implemented the new style of scrollbars $(window).width() and $(window).height() no longer correctly return the size of the browser windows viewport....
Lets say you want to set a div the size of the browser window on load eh...
// load jquery //
<div id="bob">
</div>
<script>
$('#bob').width($(window).width()).height($(window).height());
</script>
and what ends up happening is something like this
To this I ask WTF?
here is an example of the issue
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
包含
#bob
的元素是否有边距或填充?如果这样做,可能会在#bob
的宽度和高度之外添加更多空间,从而强制出现滚动条。如果这是问题所在,您可以通过添加 CSS 来解决该问题,如下所示:
Do the elements containing
#bob
have margin or padding? If they do, that could be adding more space beyond the width and height of#bob
, forcing scrollbars to appear.If that's the problem, you could fix that by adding CSS like this: