XMLHttpRequest
在老版本浏览器(IE5/6)中有兼容问题,可以通过另一种方式代替
const xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
XMLHttpRequest
在老版本浏览器(IE5/6)中有兼容问题,可以通过另一种方式代替
const xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');
本文标题:AJAX兼容方案
本文链接:https://www.haomeiwen.com/subject/jdlvectx.html
网友评论