<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 22,comments - 35,trackbacks - 0

    XMLHttpRequest對象

    onreadystatechange屬性

    readyState屬性

    responsebody屬性

    responsestream屬性

    responsetext屬性

    responsexml成員

    status成員

    statusText成員

    abort方法

    getallresponseheaders方法

    getResponseHeader方法

    open方法

    send方法

    setrequestheader方法


    xmlhttp:onreadystatechange屬性
    onreadystatechange

    指定當readyState屬性改變時的事件處理句柄
    語法

    oXMLHttpRequest.onreadystatechange = funcMyHandler;

    Example

    如下的例子演示當XMLHTTPRequest對象的readyState屬性改變時調用HandleStateChange函數,當數據接收完畢后(readystate == 4)此頁面上的一個按鈕將被激活

    var xmlhttp=null;
    function PostOrder(xmldoc)
    {
    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.5.0");
    xmlhttp.Open("POST", "http://myserver/orders/processorder.asp", false);
    xmlhttp.onreadystatechange= HandleStateChange;
    xmlhttp.Send(xmldoc);
    myButton.disabled = true;
    }
    function HandleStateChange()
    {
    if (xmlhttp.readyState == 4)
    {
    myButton.disabled = false;
    alert("Result = " + xmlhttp.responseXML.xml);
    }
    }


    ?

    XMLHttpRequest對象
    XMLHttpRequest

    提供客戶端同http服務器通訊的協議
    Example

    下面的代碼是在JScript中創建一個XMLHTTP對象并從服務器請求一個XML文檔。服務器返回XML文檔并顯示。

    var xmlHttpReq = new ActiveXObject("MSXML2.XMLHTTP.3.0");
    xmlHttpReq.open("GET", "http://localhost/books.xml", false);
    xmlHttpReq.send();
    alert(xmlHttpReq.responseText);

    在非IE的瀏覽器中,需要用new XMLHttpRequest()來創建對象,如下:

    var xmlHttpReq = new XMLHttpRequest();
    xmlHttpReq.open("GET", "http://localhost/books.xml", false);
    xmlHttpReq.send();
    alert(xmlHttpReq.responseText);

    vbscript:

    Dim HttpReq As New MSXML2.XMLHTTP30
    HttpReq.open "GET", "http://localhost/books.xml", False
    HttpReq.send
    MsgBox HttpReq.responseText

    備注

    客戶端可以通過XmlHttp對象(MSXML2.XMLHTTP.3.0)向http服務器發送請求并使用微軟XML文檔對象模型Microsoft? XML Document Object Model (DOM)處理回應。


    xmlhttp:readyState屬性
    readyState

    返回XMLHTTP請求的當前狀態
    語法

    lValue = oXMLHttpRequest.readyState;

    Example

    var XmlHttp;
    XmlHttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");

    function send() {
    XmlHttp.onreadystatechange = doHttpReadyStateChange;
    XmlHttp.open("GET", "http://localhost/sample.xml", true);
    XmlHttp.send();
    }

    function doHttpReadyStateChange() {
    if (XmlHttp.readyState == 4) {
    alert("Done");
    }
    }

    備注

    變量,此屬性只讀,狀態用長度為4的整型表示.定義如下:
    0 (未初始化) 對象已建立,但是尚未初始化(尚未調用open方法)
    1 (初始化) 對象已建立,尚未調用send方法
    2 (發送數據) send方法已調用,但是當前的狀態及http頭未知
    3 (數據傳送中) 已接收部分數據,因為響應及http頭不全,這時通過responseBody和responseText獲取部分數據會出現錯誤,
    4 (完成) 數據接收完畢,此時可以通過通過responseBody和responseText獲取完整的回應數據


    ?

    xmlhttp:responsebody屬性
    responseBody

    返回某一格式的服務器響應數據
    語法

    strValue = oXMLHttpRequest.responseBody;

    Example

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/books.xml", false);
    xmlhttp.send();
    alert(xmlhttp.responseBody);

    備注

    變量,此屬性只讀,以unsigned array格式表示直接從服務器返回的未經解碼的二進制數據。
    參考

    responseStream 屬性
    responseText 屬性


    ?

    xmlhttp:responsestream屬性
    responseStream

    以Ado Stream對象的形式返回響應信息
    語法

    strValue = oXMLHttpRequest.responseStream;

    備注

    變量,此屬性只讀,以Ado Stream對象的形式返回響應信息。


    ?

    xmlhttp:responsetext屬性
    responseText

    將響應信息作為字符串返回
    語法

    strValue = oXMLHttpRequest.responseText;

    Example

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/books.xml", false);
    xmlhttp.send();
    alert(xmlhttp.responseText);

    備注

    變量,此屬性只讀,將響應信息作為字符串返回。
    XMLHTTP嘗試將響應信息解碼為Unicode字符串,XMLHTTP默認將響應數據的編碼定為UTF-8,如果服務器返回的數據帶BOM(byte -order mark),XMLHTTP可以解碼任何UCS-2 (big or little endian)或者UCS-4 數據。注意,如果服務器返回的是xml文檔,此屬性并不處理xml文檔中的編碼聲明。你需要使用responseXML來處理。


    ?

    xmlhttprequest:responsexml成員
    responseXML

    將響應信息格式化為Xml Document對象并返回
    語法

    var objDispatch = oXMLHttpRequest.responseXML;

    Example

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/books.xml", false);
    xmlhttp.send();
    alert(xmlhttp.responseXML.xml);

    備注

    變量,此屬性只讀,將響應信息格式化為Xml Document對象并返回。如果響應數據不是有效的XML文檔,此屬性本身不返回XMLDOMParseError,可以通過處理過的DOMDocument對象獲取錯誤信息。


    ?

    xmlhttprequest對象:status成員
    status

    返回當前請求的http狀態碼
    語法

    lValue = oXMLHttpRequest.status;

    Example

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/books.xml", false);
    xmlhttp.send();
    alert(xmlhttp.status);

    返回值
    長整形標準http狀態碼,定義如下:
    Number Description

    100

    Continue

    101

    Switching protocols

    200

    OK

    201

    Created

    202

    Accepted

    203

    Non-Authoritative Information

    204

    No Content

    205

    Reset Content

    206

    Partial Content

    300

    Multiple Choices

    301

    Moved Permanently

    302

    Found

    303

    See Other

    304

    Not Modified

    305

    Use Proxy

    307

    Temporary Redirect

    400

    Bad Request

    401

    Unauthorized

    402

    Payment Required

    403

    Forbidden

    404

    Not Found

    405

    Method Not Allowed

    406

    Not Acceptable

    407

    Proxy Authentication Required

    408

    Request Timeout

    409

    Conflict

    410

    Gone

    411

    Length Required

    412

    Precondition Failed

    413

    Request Entity Too Large

    414

    Request-URI Too Long

    415

    Unsupported Media Type

    416

    Requested Range Not Suitable

    417

    Expectation Failed

    500

    Internal Server Error

    501

    Not Implemented

    502

    Bad Gateway

    503

    Service Unavailable

    504

    Gateway Timeout

    505

    HTTP Version Not Supported
    備注

    長整形,此屬性只讀,返回當前請求的http狀態碼,此屬性僅當數據發送并接收完畢后才可獲取。


    ?

    xmlhttprequest:statusText成員
    statusText

    返回當前請求的響應行狀態
    語法

    strValue = oXMLHttpRequest.statusText;

    Example

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/books.xml", false);
    xmlhttp.send();
    alert(xmlhttp.statusText);

    備注

    字符串,此屬性只讀,以BSTR返回當前請求的響應行狀態,此屬性僅當數據發送并接收完畢后才可獲取。


    ?

    xmlhttp:abort方法
    abort

    取消當前請求
    語法

    oXMLHttpRequest.abort();

    備注

    調用此方法后,當前請求返回UNINITIALIZED 狀態。


    ?

    xmlhttp:getallresponseheaders方法
    getallresponseheaders

    獲取響應的所有http頭
    語法

    strValue = oXMLHttpRequest.getAllResponseHeaders();

    Example

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/sample.xml", false);
    xmlhttp.send();
    alert(xmlhttp.getAllResponseHeaders());

    輸出由web服務器返回的http頭信息,example:

    Server:Microsoft-IIS/5.1
    X-Powered-By:ASP.NET
    Date:Sat, 07 Jun 2003 23:23:06 GMT
    Content-Type:text/xml
    Accept-Ranges:bytes
    Last Modified:Sat, 06 Jun 2003 17:19:04 GMT
    ETag:"a0e2eeba4f2cc31:97f"
    Content-Length:9

    備注

    每個http頭名稱和值用冒號分割,并以\r\n結束。當send方法完成后才可調用該方法。


    ?

    xmlhttp:getResponseHeader方法
    getResponseHeader

    從響應信息中獲取指定的http頭
    語法

    strValue = oXMLHttpRequest.getResponseHeader(bstrHeader);

    Example

    var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/sample.xml", false);
    xmlhttp.send();
    alert(xmlhttp.getResponseHeader("Server"));

    輸出http頭中的server列:當前web服務器的版本及名稱。
    備注

    當send方法成功后才可調用該方法。如果服務器返回的文檔類型為"text/xml", 則這句話xmlhttp.getResponseHeader("Content-Type");將返回字符串"text/xml"。可以使用 getAllResponseHeaders方法獲取完整的http頭信息。


    ?

    xmlhttp:open方法
    open

    創建一個新的http請求,并指定此請求的方法、URL以及驗證信息
    語法

    oXMLHttpRequest.open(bstrMethod, bstrUrl, varAsync, bstrUser, bstrPassword);

    參數

    bstrMethod
    http方法,例如:POST、GET、PUT及PROPFIND。大小寫不敏感。

    bstrUrl
    請求的URL地址,可以為絕對地址也可以為相對地址。

    varAsync[可選]
    布爾型,指定此請求是否為異步方式,默認為true。如果為真,當狀態改變時會調用onreadystatechange屬性指定的回調函數。

    bstrUser[可選]
    如果服務器需要驗證,此處指定用戶名,如果未指定,當服務器需要驗證時,會彈出驗證窗口。

    bstrPassword[可選]
    驗證信息中的密碼部分,如果用戶名為空,則此值將被忽略。
    Example
    下面的例子演示從服務器請求book.xml,并顯示其中的book字段。

    var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET","http://localhost/books.xml", false);
    xmlhttp.send();
    var book = xmlhttp.responseXML.selectSingleNode("http://book[@id=''bk101'']");
    alert(book.xml);

    備注

    調用此方法后,可以調用send方法向服務器發送數據。


    ?

    xmlhttp:send方法
    send

    發送請求到http服務器并接收回應
    語法

    oXMLHttpRequest.send(varBody);

    參數

    varBody
    欲通過此請求發送的數據。
    Example

    xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
    xmlhttp.open("GET", "http://localhost/sample.xml", false);
    xmlhttp.send();
    alert(xmlhttp.responseXML.xml);

    備注

    此方法的同步或異步方式取決于open方法中的bAsync參數,如果bAsync == False,此方法將會等待請求完成或者超時時才會返回,如果bAsync == True,此方法將立即返回。

    This method takes one optional parameter, which is the requestBody to use. The acceptable VARIANT input types are BSTR, SAFEARRAY of UI1 (unsigned bytes), IDispatch to an XML Document Object Model (DOM) object, and IStream *. You can use only chunked encoding (for sending) when sending IStream * input types. The component automatically sets the Content-Length header for all but IStream * input types.

    如果發送的數據為BSTR,則回應被編碼為utf-8, 必須在適當位置設置一個包含charset的文檔類型頭。

    If the input type is a SAFEARRAY of UI1, the response is sent as is without additional encoding. The caller must set a Content-Type header with the appropriate content type.

    如果發送的數據為XML DOM object,則回應將被編碼為在xml文檔中聲明的編碼,如果在xml文檔中沒有聲明編碼,則使用默認的UTF-8。

    If the input type is an IStream *, the response is sent as is without additional encoding. The caller must set a Content-Type header with the appropriate content type.


    ?

    xmlhttp:setrequestheader方法
    setRequestHeader

    單獨指定請求的某個http頭
    語法

    oXMLHttpRequest.setRequestHeader(bstrHeader, bstrValue);

    參數

    bstrHeader
    字符串,頭名稱。
    bstrValue
    字符串,值。
    備注

    如果已經存在已此名稱命名的http頭,則覆蓋之。此方法必須在open方法后調用。

    ?

    xmlhttp的請求同步和異步、方法的get和post
    http://www.niceidea.org/post/xmlhttp_true_false_post_get.html

    看看open方法的另外幾個參數。

    .open http-method, url, async, userID, password (后面是帳號和密碼,在禁止匿名訪問的http頁面中,需要用戶名和口令)

    首先看看異步處理方式。

    其中async是一個布爾值。如果是異步通信方式(true),客戶機就不等待服務器的響應;如果是同步方式(false),客戶機就要等到服務器返回消息后才去執行其他操作。我們需要根據實際需要來指定同步方式,在某些頁面中,可能會發出多個請求,甚至是有組織有計劃有隊形大規模的高強度的request,而后一個是會覆蓋前一個的,這個時候當然要指定同步方式:Flase。

    //niceidea 簽名留念

    首先看看method,方法。

    一個標準的http請求頭:

    7/8/99 10:27:16 Sent GET /Store/Download.asp HTTP/1.1

    Accept: application/msword, application/vnd.ms-execl, application/vnd.ms-

    powerpoint, image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-

    comet, */*

    Accept-Language: en-us

    Encoding: gzip, deflate

    Referer: http://ww.wrox.com/main_menu.asp

    Cookie: VisitCount=2&LASTDATE=6%2F4%2F99+10%3A10%3A13+AM

    User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 98)

    Host: 212.250.238.67

    Connection: Keep-Alive

    很容易看懂,其中的method包括post/get/put等。對應的主要是對于form即表單元素的處理方法。

    當mothod值為get時,表單將附加在action頁面的url中;如果頁面是asp的,將會request.querystring中獲得;

    如果是post,將會在request.form中獲得,

    對應與put方法的表單寫法是:form method="POST" enctype='multipart/form-data'

    主要用于上傳文件。

    使用那種方法取決于服務端。

    posted on 2006-07-12 18:13 kelven 閱讀(3293) 評論(2)  編輯  收藏 所屬分類: Ajax

    FeedBack:
    # re: XMLHttp常用屬性,方法,成員
    2008-07-20 00:43 | ftzzh
    不錯,學習了  回復  更多評論
      
    # Sozdat' Sait Besplatno
    2009-05-18 11:54 | Sozdat' Sait Besplatno
    Badly need your help. Famous remarks are very seldom quoted correctly.
    I am from Honduras and also now'm speaking English, give please true I wrote the following sentence: "Dana lookadoo conversational seo consultant ann smarty seo specialist and writer at search.Linkrain web directory, human edited quality weblink and seo friendly web directory organized via a comprehensive category structure."

    Thanks :p. Berk.  回復  更多評論
      
    主站蜘蛛池模板: avtt亚洲天堂| 免费无码黄网站在线观看| 亚洲日韩精品无码专区网站| 亚洲依依成人亚洲社区| 成人毛片免费观看视频在线| 亚洲AV无码一区二区三区牛牛| 国产四虎免费精品视频| 青青操视频在线免费观看| 91九色老熟女免费资源站| 亚洲精品中文字幕麻豆| 91精品国产免费久久久久久青草| 亚洲国产福利精品一区二区| 免费一本色道久久一区| 久久精品国产亚洲av品善| 亚洲av成人一区二区三区在线观看| 免费国产黄网站在线观看动图| 亚洲精品无码你懂的网站| 亚洲国产品综合人成综合网站| 91网站免费观看| 国产精品无码亚洲精品2021 | 亚洲综合另类小说色区| 搡女人免费免费视频观看| 亚洲高清免费在线观看| 处破痛哭A√18成年片免费| 菠萝菠萝蜜在线免费视频| 午夜性色一区二区三区免费不卡视频 | 美女被爆羞羞网站免费| 亚洲区小说区激情区图片区| 4455永久在线观免费看| 美女啪啪网站又黄又免费| 亚洲Av永久无码精品三区在线| 中字幕视频在线永久在线观看免费| 爱情岛论坛亚洲品质自拍视频网站| 国产亚洲色婷婷久久99精品91| 最近的中文字幕大全免费8| 亚洲欧美黑人猛交群| 嫩草影院在线免费观看| h片在线播放免费高清| 亚洲激情黄色小说| 免费在线观看a级毛片| ww在线观视频免费观看|