Jquery:代码可以工作,但很丑陋

发布于 2024-11-03 11:23:53 字数 322 浏览 4 评论 0原文

var ProdWidth = Math.abs(parseInt(Product.css('width')))
+ Math.abs(parseInt(Product.css('marginLeft')))
+ Math.abs(parseInt(Product.css('marginRight')))
+ Math.abs(parseInt(Product.css('paddingLeft')))
+ Math.abs(parseInt(Product.css('paddingRight')));

这适用于得出元素的总宽度,包括填充和边距,但它很愚蠢。我应该怎样做呢?

var ProdWidth = Math.abs(parseInt(Product.css('width')))
+ Math.abs(parseInt(Product.css('marginLeft')))
+ Math.abs(parseInt(Product.css('marginRight')))
+ Math.abs(parseInt(Product.css('paddingLeft')))
+ Math.abs(parseInt(Product.css('paddingRight')));

This works for coming up with the total width of an element including padding and margins, but its stupid. How should I be doing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摇划花蜜的午后 2024-11-10 11:23:53

查看 outerWidth() 属性。它获取元素的宽度及其填充、边框等。

将其第一个参数设置为 true 将包括边距。

var ProdWidth = Product.outerWidth(true);

Check out the outerWidth() property. It gets the width of the element and its padding, border, etc.

Setting its first argument to true will include the margins.

var ProdWidth = Product.outerWidth(true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文