我正在尝试在HTML行上使用jquery选择器。
var render = "<div id=\"cellContainer\"></div>";
$(render).find("#cellContainer").append("this is a test");
$("#container").html(render);
由于某种原因,它不输出任何东西。我错过了什么?
编辑:让我澄清一下,这是对我实际代码的简化,因此我不会寻找替代方法。
答案 0 :(得分:5)
而不是这样做,你可以简单地说:
$("<div />", {
id: "cellContainer",
html: "this is a test"
}).appendTo("#container");