gpt4 book ai didi

需要 JavaScript、J Query 帮助,如何对跨度值求和,如下面的 HTML 所示

转载 作者:行者123 更新时间:2023-12-02 17:40:19 26 4
gpt4 key购买 nike

我如何总结 html 跨度中的值。我被卡住了,因为我尝试过的代码没有获取 html 值。

<label class="radio">
<input type="radio" name="x_Defd1_price" id="x_Defd1_price_0" value="3">
12

</label>

<label class="radio">

<input type="radio" name="x_Defd2_price" id="x_Defd2_price_0" value="4">
13

</label>

<label class="radio">

<input type="radio" name="x_Defd3_price" id="x_Defd3_price_0" value="5">
14
</label>

最佳答案

根据您的编辑,您似乎正在尝试获得 12 + 13 + 14 的总数?那是对的吗?为此,使用 jQuery,您只需执行以下操作:

var total = 0;
$('label.radio').each(function(){
total += parseFloat($(this).text());
});
alert('total: ' + total);

或者如果您想获得 <input> 的总和值,您将使用:

var total = 0;
$('label.radio input').each(function(){
total += parseFloat($(this).val());
});
alert('total: ' + total);

关于需要 JavaScript、J Query 帮助,如何对跨度值求和,如下面的 HTML 所示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22267203/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com