我在表格中有一行,并且该行未显示为 css 样式设置为display:none
.
HTML表格:
<table class="myTable">
<tr class="prototype">
........
</tr>
</table>
CSS 代码:
.myTable .prototype{display:none;}
现在我必须克隆同一行并向其中添加一些数据并将该行附加到表中,如下所示:我有以下 jquery 代码:
var master = $(this).parents("table.myTable");
var prot = master.find(".prototype").clone();
prot.attr("class", "");
prot.find("#attributeValue").attr("value", "ABC");
prot.find("#contactFirstName").attr("value", "XYZ");
jQuery('table.myTable tr:last').before(prot);
但是该行不会被添加到表中。请帮我。
谢谢!