我需要在选择器中插入一个未关闭的标签:
$("div.crop-to-select").html("")
$("div.crop-to-select").append("<table>")
我想稍后关闭,我自己:
$("div.crop-to-select").append("</table>")
但我发现附加总是添加
<table></table>
每一次。在我可以将任何数据放入其中之前,我的表已关闭。 是否有不同的jQuery函数?
答案 0 :(得分: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..