javascript – 以字符串形式返回的XML,而不是对象

我不完全理解为什么这不起作用.我认为
XML很容易与之交互,但我不禁感到
XML的标记导致了问题.我知道它的验证XML,但仍然:

XML 79.xml

<TREE xmlns:autn="http://schemas.autonomy.com/aci/">
      <ITEM id="753" name="Report an IT Issue for a Corporate Finance Application." link="http://ithelp-remedy.gsk.com/ars/ITHelpHDsubmit_Application/SubmitProblemTicket.asp?qSummary=CORPFINANCEIT">
                 <HELPLINKS/>
      </ITEM>
</TREE>

另外值得注意的是我得到的整个XML,我不应该在xml标题中有更多细节吗?

jQuery的

 $.ajax({
     url:'xml/79.xml',
     dataType : 'xml',
     success: function(data){
         console.info(data);
     }
});

这不会返回一个对象让我玩:(我怎么能得到它,以便我可以轻松地玩数据

最佳答案 试试这个:

$.ajax({
     url:'xml/79.xml',
     dataType : 'text',
     success: function(data){
        //I'm adding the xml tags alright, but I don't think you
        //really need to, or you could just put a check.
        var omgXmlObj = $($.parseXML('<xml>' + data + '</xml>'));
        console.log(omgXmlObj.find('TREE'));
        console.log(omgXmlObj.find('TREE').attr('xmlns:autn'));
     }
});
点赞