获取Ajax通信对象方法

function getXHR() {
// 该方法用于获取Ajax通信对象
var xhr = null;
if (window.XMLHttpRequest != null &&
window.XMLHttpRequest != undefined) {
xhr = new XMLHttpRequest();
} else {
/ 兼容早期的IE浏览器
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
return xhr;
}
上一篇:直播APP源码是如何实现音视频同步的


下一篇:解决方案-问题001:物理机、虚机等等Linux操作系统/usr/bin目录权限误操作,导致无法切换root