AJAX兼容方案

XMLHttpRequest 在老版本浏览器(IE5/6)中有兼容问题,可以通过另一种方式代替

const xhr = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject('Microsoft.XMLHTTP');

你可能感兴趣的:(AJAX兼容方案)