解決在firefox瀏覽器不支援ajax的transport.responseXml方法問題

來源:互聯網
上載者:User

if (window.ActiveXObject) return new ActiveXObject('Microsoft.XMLHTTP')
else if (window.XMLHttpRequest) return new XMLHttpRequest()
如上代碼所示ie瀏覽器使用new ActiveXObject('Microsoft.XMLHTTP')返回一個XMLHTTP執行個體,而在firefox中則使用new XMLHttpRequest()返回非同步請求對象執行個體, 如果需要取得他們返回的xml的時候,兩者的調用方法是不同的,前者使用responseXml屬性返回,而後者則需要用responseXML屬性兩者都可以通過responsetXML取值,只是ie的支援responseXml而ff的不支援,另外firefox的支援人員頁面推薦 這麼使用:
var parser = new DOMParser();
xml = parser.parseFromString(transport.responseText, "text/xml");

另外在firefox中使用responseXML返回的值,不支援selectNodes,selectSingleNode方法,只能使用getElementsByTagName方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.