function CreateXMLHttp()
{
var xmlhttp=null;
if (window.ActiveXObject)
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function CreateXMLHttp()
{
var xmlhttp=null;
if (window.ActiveXObject)
{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest)
{
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
转载于:https://www.cnblogs.com/snlfq2000/archive/2011/04/08/2009193.html