真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

AJAX常用函數(shù)的實(shí)例用介紹-創(chuàng)新互聯(lián)

這篇文章主要講解了“AJAX常用函數(shù)的實(shí)例用介紹”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“AJAX常用函數(shù)的實(shí)例用介紹”吧!

創(chuàng)新互聯(lián)是一家專業(yè)提供濱湖企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站制作、做網(wǎng)站、H5網(wǎng)站設(shè)計(jì)、小程序制作等業(yè)務(wù)。10年已為濱湖眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)的建站公司優(yōu)惠進(jìn)行中。

創(chuàng)建XMLHTTP對(duì)象,區(qū)別IE,Mozilla瀏覽器 

代碼如下:

 function getRequest() {  
        http_request = false;  
        if (window.XMLHttpRequest) {   
            //對(duì)于Mozilla﹑Netscape﹑Safari等瀏覽器,創(chuàng)建XMLHttpRequest   
            http_request = new XMLHttpRequest();  
            if (http_request.overrideMimeType) {  
                 //如果服務(wù)器響應(yīng)的header不是text/xml,可以調(diào)用其它方法修改該header  
                http_request.overrideMimeType('text/xml');  
            }  
        } else if (window.ActiveXObject) {   
  // 對(duì)于Internet Explorer瀏覽器,創(chuàng)建XMLHttpRequest   
            try {  
                http_request = new ActiveXObject("Msxml2.XMLHTTP");  
            } catch (e) {  
                try {  
                    http_request = new ActiveXObject("Microsoft.XMLHTTP");  
                } catch (e) {}  
            }  
        }  
  return http_request;  
 }

//獲得Url 的responseText



代碼如下:

 function getResponseText(url)  
 {  
  http_request=getRequest();  
        http_request.open('GET', url, false);  
        http_request.send(null);  

  if (http_request.readyState == 4)   
    {  
     // 收到完整的服務(wù)器響應(yīng)   
     if (http_request.status == 200) {  
  //HTTP服務(wù)器響應(yīng)的值OK  
  requestdoc = http_request.responseText;   
  //將服務(wù)器返回的字符串寫到頁面中ID為message的區(qū)域   
    }   
   else {  
  requestdoc = http_request.status;  
   }  
  }  
  return requestdoc;  
 }

//獲得Url 的responseXML 

代碼如下:

function getResponseText(url)  
 {  
  http_request=getRequest();  
        http_request.open('GET', url, false);  
        http_request.send(null);  

  if (http_request.readyState == 4)   
    {  
     // 收到完整的服務(wù)器響應(yīng)   
     if (http_request.status == 200) {  
  //HTTP服務(wù)器響應(yīng)的值OK  
  requestdoc = http_request.responseXML;   
  //將服務(wù)器返回的字符串寫到頁面中ID為message的區(qū)域   
    }   
   else {  
  requestdoc = http_request.status;  
   }  
  }  
  return requestdoc;  
 }

感謝各位的閱讀,以上就是“AJAX常用函數(shù)的實(shí)例用介紹”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)AJAX常用函數(shù)的實(shí)例用介紹這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!


本文題目:AJAX常用函數(shù)的實(shí)例用介紹-創(chuàng)新互聯(lián)
URL鏈接:http://weahome.cn/article/dogope.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部