适用于多浏览器的xmlHttp

var xmlHttp=null;
try
{
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP")
}
catch(e)
{
    try
    {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP")
    }
    catch(oc)
    {
        xmlHttp=null
    }
}
        
if ( !xmlHttp && typeof XMLHttpRequest != "undefined" )
{
    xmlHttp = new XMLHttpRequest()
}
                
 xmlHttp.open("POST", url, false);
 xmlHttp.send("");
 result = xmlHttp.responseText;

posted on 2010-06-08 13:07  红叶林  阅读(186)  评论(0编辑  收藏  举报