我正在設置一個表單,它將動態創建一個文本字段並將其附加到表格中。文本字段的名稱是一個數組,因此它包含括號。下面的代碼不會追加輸入字段,而是返回[object HTMLInputElement]。我假設這是因爲括號?有沒有辦法做到這一點?jquery - 如何將名稱數組的輸入附加到行?
//HTML
<table id="notesplus" cellpadding="0" cellspacing="0">
<thead></thead>
<tbody></tbody>
</table>
//JQUERY
$(document).ready(function() {
$('input[id=addIt]').live('click', function() {
addPlus();
});
});
function addPlus() {
var item = document.createElement("textarea");
item.setAttribute("name", "section[0][aplus]"+mycount+"[notes]");
var sRow1 = $('<tr>').appendTo('table#notesplus tbody');
var sCell1 = $('<td>').html(item).appendTo(sRow1);
}