我遇到了 jQuery 的问题。我需要复制一些代码,附加在其他地方。
我喜欢复制的来源是这样的:
<div id="copyCode" style="display: none">
<div class="ofPagedataTable">
<tr class="page copy">
<td class="id"><input type="text" /></td>
<td class="sprache"><input type="text" /></td>
<td class="description"><input type="text" /></td>
<td class="title"><input type="text" /></td>
<td class="keywords"><input type="text" /></td>
</tr>
</div>
</div>
我正在使用的 jQuery 是这样的:
$('.addPageToPagedata').click(function(){
html = $("#copyCode").children(".ofPagedataTable").html();
target = $('.pagedata tbody').children(':last');
$(html).appendTo(target);
});
这是一种工作,但jQuery正在拿走<tr>
和<td>
元素,它只是附加:
<input type="text">
<input type="text">
<input type="text">
<input type="text">
<input type="text">
我不知道该怎么办。如果有人可以给我一个如何解决这个问题的建议,那就太好了。
谢谢!