1. 程式人生 > >Ajax get和Post的純js實現程式碼

Ajax get和Post的純js實現程式碼

<span style="font-size:18px;">//AJAX類
function AjaxClass()
{
    var XmlHttp = false;
    try
    {
        XmlHttp = new XMLHttpRequest();        //FireFox專有
    }
    catch(e)
    {
        try
        {
            XmlHttp = new ActiveXObject("MSXML2.XMLHTTP");
        }
        catch(e2)
        {
            try
            {
                XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch(e3)
            {
                alert("你的瀏覽器不支援XMLHTTP物件,請升級到IE6以上版本!");
                XmlHttp = false;
            }
        }
    }

    var me = this;
    this.Method = "POST";
    this.Url = "";
    this.Async = true;
    this.Arg = "";
    this.CallBack = function(){};
    this.Loading = function(){};
    
    this.Send = function()
    {
        if (this.Url=="")
        {
            return false;
        }
        if (!XmlHttp)
        {
            return IframePost();
        }

        XmlHttp.open (this.Method, this.Url, this.Async);
        if (this.Method=="POST")
        {
            XmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
        }
        XmlHttp.onreadystatechange = function()
        {
            if (XmlHttp.readyState==4)
            {
                var Result = false;
                if (XmlHttp.status==200)
                {
                    Result = XmlHttp.responseText;
                }
                XmlHttp = null;
                
                me.CallBack(Result);
            }
             else
             {
				me.Loading();
             }
        }
        if (this.Method=="POST")
        {
            XmlHttp.send(this.Arg);
        }
        else
        {
            XmlHttp.send(null);
        }
    }
    
    //Iframe方式提交
    function IframePost()
    {
        var Num = 0;
        var obj = document.createElement("iframe");
        obj.attachEvent("onload",function(){ me.CallBack(obj.contentWindow.document.body.innerHTML); obj.removeNode() });
        obj.attachEvent("onreadystatechange",function(){ if (Num>=5) {alert(false);obj.removeNode()} });
        obj.src = me.Url;
        obj.style.display = 'none';
        document.body.appendChild(obj);
    }
}

/*----------------------------呼叫方法------------------------------
    var Ajax = new AjaxClass();			// 建立AJAX物件
    Ajax.Method = "POST"; 				// 設定請求方式為POST
    Ajax.Url = "default.asp"			// URL為default.asp
    Ajax.Async = true;					// 是否非同步
    Ajax.Arg = "a=1&b=2";				// POST的引數
    Ajax.Loading = function(){			//等待函式
		document.write("loading...");
    }
    Ajax.CallBack = function(str)       // 回撥函式
    {
        document.write(str);
    }
    Ajax.Send();            			// 傳送請求
   -----------------------------------------------------------
    var Ajax = new AjaxClass();			// 建立AJAX物件
    Ajax.Method = "GET"; 				// 設定請求方式為POST
    Ajax.Url = "default.asp?a=1&b=2"	// URL為default.asp
    Ajax.Async = true;					// 是否非同步
    Ajax.Loading = function(){			//等待函式
		document.write("loading...");
    }
    Ajax.CallBack = function(str)       // 回撥函式
    {
        document.write(str);
    }
    Ajax.Send();           				// 傳送請求
--------------------------------------------------------------------*/ </span>