私はこのようなウェブサイトのフィードを取得しています
<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内のすべてを取得する方法はありますか?