1

我需要在选择器中插入一个未闭合的标签:

$("div.crop-to-select").html("")
$("div.crop-to-select").append("<table>")

我想稍后在哪里结束,我自己:

$("div.crop-to-select").append("</table>")

不过,我发现附加总是添加

<table></table>

每一次。在我可以将任何数据放入其中之前,我的表已经关闭。有不同的jQuery函数吗?

4

1 回答 1

4

你可以做这样的事情..

$("div.crop-to-select").append("<table>"); // This is fine..
$("div.crop-to-select table").html("-----ADD YOUR DATA HERE ------"); // But data which 
you want to put inside table can be added here..
于 2013-01-18T08:13:33.303 回答