Nest
- 1 ответ
- 0 вопросов
1
Вклад в тег
$('#plus').click(function() {
let rowID = 12;
$("table tbody tr:first").clone().find("input").each(function(index) {
if(index === 0) {
$(this).attr('name', 'id['+rowID+']').val(rowID);
} else {
$(this).attr('name', 'id['+rowID+']').val('');
}
}).end().appendTo("table");
});