var xmlHttpRequest = null; //声明一个对象以接收XMLHttpRequest对象
if(window.ActiveXObject) //IE浏览器
{
xmlHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) //除IE之外的其他浏览器
{
xmlHttpRequest = new XMLHttpRequest();
}
if (null != xmlHttpRequest)
{
//发送请求
}
原文链接:https://www.f2er.com/ajax/164194.html