$.ajax({
type: "POST",
contentType: 'application/json;charset=utf-8',
dataType:'json',
url: 'generatequotations',
data: JSON.stringify(),
success: function(result) {
// alert("success");
console.log(result);
$.each(result, function(i, item) {
tr = $('<tr/>');
tr.append($("<td/>").html('<input type="text" name="unit_price" id="unit_price"/>'));
tr.append($("<td/>").html('<input type="text" readonly="true" name="total" id="total"/>'));
$('#tbl_items').append(tr);
});
}
});
<body>
<table id="tbl_items"></table>
</body>
假設上面的代碼會在表中生成10個「unit_price」文本框,我需要的是我想單獨獲取這10個文本框的值以供進一步計算。幫我怪才......如何分別從動態生成的文本框中獲取值?
鏈接到屏幕截圖http://oi62.tinypic.com/255hslc.jpg
兩行動態生成的我想每個文本框(「UNIT_PRICE」)內相應的總(「總」)文本框
您需要在輸入加載後編寫代碼,即在追加tr後。 –
追加tr後,我得到了一個動態生成的文本框表。我需要分別獲取這些動態文本框的值。 – DON