克隆元素并自动增加其id的简单任务。
可以在一行完成吗?
答案 0 :(得分:3)
<强>的jQuery 强>
var NewElement=$("#test1").clone(); // Clone the element
var IDNr=NewElement.attr("id").match(/\d+$/); // Grab the ID number
NewElement.attr("id",NewElement.attr("id").replace(IDNr,parseInt(IDNr)+1)); // Increment the ID
<强> HTML 强>
<div id="test1">Test</div>