這篇文章給大家分享的是有關(guān)原生ajax如何調(diào)用數(shù)據(jù)的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
成都創(chuàng)新互聯(lián)公司專注于阜平網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供阜平營銷型網(wǎng)站建設(shè),阜平網(wǎng)站制作、阜平網(wǎng)頁設(shè)計、阜平網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)服務(wù),打造阜平網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供阜平網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
一.兼容瀏覽器部分
function xmlHttpR() { var xmlhttp; if(window.XMLHttpRequest) { xmlhttp=new XMLHttpRequest(); } else { try { xmlhttp=new ActiveXObject("Msxml2.XMLHTTP") } catch(e) { try{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch(e){return null;} } } return xmlhttp; }
以上能夠返回一個兼容各個瀏覽器的對象。
二.實例代碼
var ajaxEl=new Object(); //ajaxEl是自定義的命名空間; ajaxEl.contentLoad=function(url) { //IE瀏覽器下,會啟用緩存,這里url加入date字段就是為了防止IE使用緩存,當(dāng)然也可以使用Math.random()產(chǎn)生和getTime類似的效果; url+="?date="+new Date().getTime(); this.req=null; this.url=url; //這個回調(diào)函數(shù)就是在數(shù)據(jù)在頁面上的更新函數(shù); this.onload=function() { //domEl是ID為#test的dom元素; var domEl=document.getElementById("test"); //除了用responseText屬性,也可以使用responseXml獲得一張數(shù)據(jù)表; domEl.innerHTML=this.req.responseText; } this.Xmlhttp(url); } ajaxEl.contentLoad.prototype={ Xmlhttp:function(url){ if(window.XMLHttpRequest) { this.req=new XMLHttpRequest(); } else { try{this.req=new ActiveXObject("Msxml2.XMLHTTP")} catch(e) { try{this.req=new ActiveXObject("Microsoft.XMLHTTP"); } catch(e){return null;} } } if(this.req) { var xmlR=this; this.req.onreadystatechange=function(){ if(xmlR.req.readyState===4) { xmlR.onload.call(xmlR); } } this.req.open("GET",url,true); this.req.send(null); } } } var xmlE=new ajaxEl.contentLoad("main.php");
三.php中的代碼
echo "now! time is:".date("H:i:s a Y");
感謝各位的閱讀!關(guān)于“原生ajax如何調(diào)用數(shù)據(jù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!