0
我想陣列的輸入文本值在JavaScript陣列輸入文本中得到的值
這是我的代碼:
Item : <input id="t_item" name="t_item[]" type="text" class="teks3">
Cost : <input id="t_cost" name="t_cost[]" type="text" class="teks3">
<input type="button" id="tb_more_item" class="add_file"/>
和JS代碼是:
$("input#tb_more_item").click(function(){
var new_file = $("
Item : <input id='t_item' name='t_item[]' type='text' class='teks3'/>
Cost : <input id='t_cost' name='t_cost[]' type='text' class='teks3'/>
");
$("div#div_item").append(new_file).fadeIn();
});
我嘗試以此代碼獲得更多商品價值:
var item_value = [], cost_value = [];
$("input#t_item").each(function() {
$thisItem = $(this);
item_value = $thisItem.val();
});
$("input#t_cost").each(function() {
$thisCost = $(this);
cost_value = $thisCost.val();
});
alert(item_value +"-"+ cost_value);
結果是獲取我在輸入文本中輸入的最後一個值。
有沒有人有解決方案?
謝謝
但沒有發現錯誤..你能解決它嗎?如何獲得輸入文本數組值? – 2012-04-02 04:41:41