AJAX responseXML errors

前端 未结 7 2244
傲寒
傲寒 2020-12-21 02:41

I\'ve been having some weird issues when it comes to make an AJAX request and handling the response.

I am making an ajax call for an xml file. however when i get the

相关标签:
7条回答
  • 2020-12-21 03:03

    Are you calling the URL relative to the current document? Since IE would be using the ActiveXObject, it might need an absolute path, for example:

    http://some.url/ConferenceRoomSchedules.xml

    As for the XML, are you sure it's well-formed? Does it load in an XML editor, for instance?

    0 讨论(0)
提交回复
热议问题