jQuery 的 width() 函数的 Javascript 等价物是什么?
我希望能够计算宽度 css 属性设置为 'auto'
的元素的宽度(以像素为单位)。
我尝试过 element.style.width
但没有成功,因为它返回了 'auto'
。我注意到 jQuery 函数 width()
返回以 px 为单位的长度,但我无法使用 jQuery 来解决这个问题,因为它在我的页面中不可用。那么,有人知道 jQuery width()
的等效方法吗?
谢谢。
I want to be able to calculate the width, in pixels, of an element that has the width css property set to 'auto'
.
I have tried element.style.width
but didn't work because it returned 'auto'
. I notices that the jQuery function width()
returns the length in px, but I cannot use jQuery to solve this, because it is not available in my page. So, does anybody know an equivalent method for jQuery width()
?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery 在内部使用...
,它上面还有一些其他东西来处理浏览器差异。
它返回元素渲染的大小,其中 .offsetxx 根据盒模型返回大小。
是获取元素“真实”尺寸的最准确方法。
这是 John Resig(jQuery 的作者)关于此事的帖子。
jQuery uses...
internally, it has some other stuff on top to deal with browser differences.
It returns an elements rendered size, where as .offsetxx returns sizes according to the box model.
Is the most accurate way to get an elements "real" dimensions.
Here is a post by John Resig ( author of jQuery ) on the matter.
在这上面浪费了 2 个小时。
对于我的情况,其他答案不起作用,因此结合其他答案和我将我的发现放入一篇带有示例的文章中,以便于阅读:
对于像
select
这样的元素,JQuery 中的width()
与 JQuery 中的clientWidth
相同JavaScript。下面的示例代码,包括输出:
希望有帮助。
Wasted 2 hours on this.
For my case other answers did not work so combining others answers & my findings into one post with examples, for easy reading:
For an element like
select
, thewidth()
in JQuery is same asclientWidth
in JavaScript.Sample code below, including output:
Hope that helps.
它基本上归结为
.offsetWidth
,但由于跨浏览器的差异,jQuery 代码稍微复杂一些。It basically comes down to
.offsetWidth
, but the jQuery code is a little more complicated due to cross-browser differences.