yui3 版本的 jquery .width()
如何计算 yui3 中元素的宽度(以像素为单位)?我尝试过 .getCompulatedStyle("width")
和 .get('offsetWidth')
都没有返回正确的结果,可能是因为 div 没有 CSS 宽度设置在它上面。
How do you calculate the width (in pixels) of an element in yui3? I have tried .getComputedStyle("width")
and .get('offsetWidth')
and neither return the correct results, possibly because the div doesn't have a CSS width set on it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它对我来说工作正常这里,你能提供一个失败的例子吗?
也许您希望它包含填充/边框? JQuery 的 .width() 也不包含这些,但也许这就是混乱所在。
It's working fine for me here, could you provide an example where it fails?
Maybe you're expecting it to include padding/border? JQuery's .width() doesn't include those either, but perhaps that's where the confusion lies.