我有以下代码来解决 IE 本地访问 XML 问题:
$.ajax({
type: "GET",
url: options.xmlUrl,
dataType: ($.browser.msie) ? "text" : "xml",
success: function(data) {wrapTree(data);},
error:function(){alert(options.loadingError);}
});
由于 $.browser,它不适用于 jQuery 2.0.0。http://docs.jquery.com/Specifying_the_Data_Type_for_AJAX_Requests上的建议不再有效。任何人都知道它应该如何适应与 jQuery 当前版本一起运行?