0
我不擅長JS,但我試圖動態地添加一行內容(克隆)。這是工作,如果我把appendTo不接受我的ID
var apcount = 0;
function add(id, apmax) {
var aptable = id;
if (apmax > apcount) {
$("table tr:last").clone().appendTo("#m1s1t2").find(':input').attr('name', function(index, name) {
return name.replace(/(\d+)$/, function(fullMatch, n) {
return Number(n) + 1;
});
})
}; apcount++;
}
'ID'直接到'.appendTo'。這個函數的調用是一個按鈕
<input onclick="add('m1s1t2',2)" type="button">
其實我想有像「.appendTo(ID)」
任何人的想法?
OMG!謝謝!用「',」「試過所有的東西,但不知道」#「+ id。做得好。 –