我正在使用 jquery 成功解析 xml 文档,但是在使用时我似乎无法维护任何 HTML 标签:$(this).find("p").text()
我的 xml 看起来像这样:
<block>
<p><b>Speech:</b> Some text</p>
<a>http://www.ur.com/</a>
</block>
我知道 .text() 会删除所有 html 标签,但是如何检索<p>
标签之间的数据,以便最终得到 .text() "<b>Speech:</b> Some text"
?