我正在尝试遍历存在标记的RSS Feed,如下所示
<item>
<itunes:explicit>no</itunes:explicit>
</item>
我如何获得itunes的价值:显性。我尝试过如下
_this = loadedData // xml data from the ajax request
$(_this).find('item').find('itunes:explicit').text()
它不会返回其中的文字。
有什么方法可以访问它吗?
答案 0 :(得分:2)
用户parseXML,described here.
答案 1 :(得分:2)
您需要在选择器中转义冒号,以便jQuery不会将冒号解释为CSS伪类:
$(_this).find('itunes\\:explicit').text()
答案 2 :(得分:0)
你可以直接找到你想要的东西..你不需要这个代码的层次结构 -
$(_this).find('itunes\\:explicit').text()