gpt4 book ai didi

javascript - jQuery 读取值并进行计算

转载 作者:搜寻专家 更新时间:2023-10-31 08:08:34 26 4
gpt4 key购买 nike

我有 3 行的 html 表,每行包含两个 <td>一个带文本输入字段的 name="freq"第二个<td>是空的。

我想读取输入字段的所有值并对它们执行计算函数,然后为空的 <td> 中的每个字段设置结果

我想在 jQuery 中做到这一点,

感谢您的帮助。

最佳答案

像这样的..

$('input[name="freq"]').each(function(){
var value = this.value; // extract the value from the input element
var newValue = process(value); // process performs the calculations..

$(this).closest('td').next().html(newValue); // find the following <td> element and set its contents to the result of the calculations..
});

演示在 http://jsfiddle.net/gaby/bWFxQ/

关于javascript - jQuery 读取值并进行计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7901534/

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