How to add all input values using jquery

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

How to add all input values using jquery

文章 yehlu »

https://stackoverflow.com/questions/707 ... ing-jquery
<input type="hidden" id="test_1" value="1">
....
<input type="hidden" id="test_10" value="10">

代碼: 選擇全部

val = 0;
 $("input[id^='test_']").each(function() {      
    val = $(this).attr('value') + val;
 });

 console.log(val);
回覆文章

回到「Java Script」