摘要:
$.ajax({ url: 'xml/myXML.xml', dataType: ($.browser.msie) ? "text" : "xml", timeout: 1000, error: function(data){ alert('Error occurred loading the XML'); }, success: function(data){ var xml; if (typeof data == "string") { xml = new ActiveXObject("M 阅读全文