标签: jquery xml traversal
我有以下链接提供的代码。
jsfiddle
我正在努力获得"其他"它位于标签内。在最好的情况下,警报值是不确定的。我无法在父(),兄弟()或其子()中找到它。
other = xml.find("CustomerLoss High").next().html()
答案 0 :(得分:1)
我找到了。
我必须这样做:
other = xml.find("Reputation").siblings().next().prop("tagName")