(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>
谢谢,债券