我正在动态生成div并希望通过html()/ text()更改其内容,但它不起作用.
这是代码:
var div = '<div class="ps_album"><img alt="" src="images/1px.gif" class="thmb"><div class="ps_desc"><h2>title</h2></div></div>'; $(div).find('.ps_desc').html('<h1>Hello</h1>'); $(div).appendTo('body');
在上面的代码中,第3行即
$(div).find('.ps_desc').html('<h1>Hello</h1>');
不工作..为什么?