jquery获取不到真实高度?
我试图找出为什么 jquery 无法返回 jquery-mobile 标头的实际高度,请参阅此屏幕截图: http://i43.tinypic.com/21epavn.png,标题高42px,jquery返回
>$('body').find('div[data-role=header]').css('height')
"40px"
什么问题?
I am trying to find out why jquery can't return the actual heigth of the jquery-mobile header, see this screenshot: http://i43.tinypic.com/21epavn.png, the header is 42px high, and jquery returns
>$('body').find('div[data-role=header]').css('height')
"40px"
What's wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜测(可能是错的,但我的第一个想法......)元素的高度是 40px,然后它周围有 1px 的边距/填充/边框。尝试在 CSS 中指定以下内容:
看看是否仍然存在此问题?
根据 Rob W 的说法,jQuery 中有一个 .outerHeight() 函数,它将在计算中包含填充。如果您不想删除填充,请考虑使用它。
I'm guessing (could be wrong, but my first thought...) that the height of the element is 40px, and then it has a 1px margin/padding/border wrapped around it. Try specifying the following in your CSS:
and see if you still have this problem?
According to Rob W, there is a .outerHeight() function in jQuery which will include the padding in its calculation. Consider using that instead if you don't want to remove your padding.