我在将 html 作为其值之一的 ajax 请求中返回 JSON。
html:
"<div id="foo">
<p>FOO</p>
</div>
<div id="bar">
<p>BAR</p>
</div>"
我想添加#foo
到一个元素和#bar
另一个元素。我尝试了以下方法:
$('#add-foo-html-here').html($(response.html).find('#foo'));
但这找不到#foo
。做这个的最好方式是什么?我应该将 html 内容添加到临时元素然后找到 id 吗?