GetXmlHttpObject

function GetXmlHttpObject()
{
var xmlHttp
=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp
=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp
=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}

posted on 2008-11-15 13:27  gotolovo  阅读(810)  评论(0编辑  收藏  举报