jQuery:获取每个元素的宽度并总结出来

前端之家收集整理的这篇文章主要介绍了jQuery:获取每个元素的宽度并总结出来前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何获取每个元素的宽度并总结一下?

例如,这里是HTML:

<div id="container">
<div class="block-item" style="width:10px"></div>
<div class="block-item" style="width:50px"></div>
<div class="block-item" style="width:90px"></div>
<div>

我可以想到每个元素的循环,但是如何把数字加起来呢?

$('.block-item').each(function(index) {
    alert($(this).width());
});

我想得到总数150(10 50 90).

谢谢.

解决方法

使用 parseInt(value,radix)
var totalWidth = 0;

$('.block-item').each(function(index) {
    totalWidth += parseInt($(this).width(),10);
});

这是一个example fiddle.

原文链接:https://www.f2er.com/jquery/180424.html

猜你在找的jQuery相关文章