我创建代码但我不知道如何(tr)在表中添加 2 次请给我建议?
$(function() {
$("#addProduct").click(function() {
$("<table />")
.append($("<tr /><td />"));
.appendTo("#someContainer");
});
});
HTML
<button id="addProduct">Add Product</button>
<div id="someContainer"></div>