試圖讓我的1錶行自動克隆24次,然後得到「添加行+」按鈕來克隆附加。JQuery循環克隆
例子可以在這裏找到:http://jsfiddle.net/CzZxf/17/
var uniqueIds = $("#math-table tr").length;
$("#button").click(function(){
var $thisRow = $(this).closest("tr"),
$clone = $thisRow.removeClass().clone(), // Clone row
$inputs = $clone.find("input").val("").removeClass();
uniqueIds++; //Increment ID
$inputs[0].id = "A" + uniqueIds;
$inputs[1].id = "B" + uniqueIds;
$inputs[2].id = "C" + uniqueIds;
$thisRow.after($clone);
});
你有沒有看着http://stackoverflow.com/questions/171027/add-table-row-in-jquery – j08691 2012-01-12 22:11:34