0
(function(){

var xmlString="<Family><people><title>News for Golf</title></people><people><title>News for NBA</title></people></Family>"

$(xmlString).find('people').each(function(){
alert($(this).html());
});

})(jQuery);

上面的代码在 FF 上运行良好并给出

<title>News for Golf</title>
<title>News for NBA</title>

但不是在 IE 中,任何人都可以建议 IE 的问题是什么,我需要与上面相同的输出。

另外,如果可能的话,我真正想要的是

 <people><title>News for Golf</title></people>
 <people><title>News for NBA</title></people>

谢谢,债券

4

1 回答 1

2

您没有将 XML 解析为 Jquery 将正确使用的格式。

请参阅:http ://api.jquery.com/jQuery.parseXML/

你应该这样做:

var xmlstring = '<Family><people><title>News for Golf</title></people><people><title>News  for NBA</title></people></Family>'​​​​​​​​;
var xmlDoc = $.parseXML(xmlstring);
var $xml = $(xmlDoc);
var $people = $xml.find('people');
$.each($people,function(index,person){
    //Here person refers to the person node of the XML
});
于 2012-05-30T03:01:38.980 回答