我有以下代码
<span class="numbers">
<a href="#">20</a>, <a href="#">50</a>, <a href="#">100</a>
</span>
类“数字”是位置绝对元素,它在页面中使用多次。
类“数字”中的内容将动态变化。所以我需要将孩子的总宽度应用于其父容器
我尝试了这段代码,但没有工作。
var totalWidth = 0;
$(".numbers").children('a').each(function() {
totalWidth = totalWidth + $(this).width();
$('.numbers').each(function(){$(this).css("width", totalWidth);});
});
但我只得到 totalWidth 值 0 。任何人都可以帮忙............?