template = $("#template"); $(template).attr("id","newid"); $(template).appendTo("body");
我想做的是为模板分配一个id,然后修改内容.麻烦的是,我目前是指实际的模板元素,所以id正在改变.再次使用这个模板,我不能选择,因为id是不同的.
任何关于最佳方法的建议?
template = $("#template").clone(); template.attr("id","newid"); template.appendTo("body");