我得到一个看起来像这样的网站提要
<rss...>
<title> some title </title>
<content>
<![CDATA[ <div>this tag is ignored<div> who took the cookie in the cookie jar!? ]]>
</content>
</rss>
我需要将 cdata 的全部内容显示在 html 中。我正在使用 jquery 1.9.1,当我使用 获取内容部分时 $(xml).find('rss content').text()
,它实际上忽略了整个<div>this tag is ignored<div>
部分。有什么方法可以使用 javascript 或 jquery 获取 CDATA 中的所有内容?