AJAX兼容方案
2019-08-28 本文已影响0人
给我把胡萝卜切成肉丁
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');