- 相關(guān)推薦
原生ajax調(diào)用數(shù)據(jù)實(shí)例簡(jiǎn)單講解
由于jQuery的盛行,現(xiàn)在使用較多的是jQuery封裝好了的ajax,因?yàn)榻鉀Q了瀏覽器兼容性問(wèn)題,這對(duì)程序員來(lái)說(shuō)就等于去掉了一個(gè)心頭大患,但并非原生ajax就銷(xiāo)聲匿跡,并且本人感覺(jué)還是對(duì)原生的ajax有所了解的好,下面就是一段ajax數(shù)據(jù)調(diào)用的實(shí)例代碼,非常的簡(jiǎn)單,初學(xué)者可以參考一下。代碼如下:
一.兼容瀏覽器部分
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; }
以上能夠返回一個(gè)兼容各個(gè)瀏覽器的對(duì)象。
二.實(shí)例代碼
var ajaxEl=new Object(); //ajaxEl是自定義的命名空間; ajaxEl.contentLoad=function(url){ //IE瀏覽器下,會(huì)啟用緩存,這里url加入date字段就是為了防止IE使用緩存,當(dāng)然也可以使用Math.random()產(chǎn)生和getTime類(lèi)似的效果; url+=""+new Date().getTime(); this.req=null; this.url=url; //這個(gè)回調(diào)函數(shù)就是在數(shù)據(jù)在頁(yè)面上的更新函數(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ù)實(shí)例介紹,希望對(duì)大家的學(xué)習(xí)有所幫助。
【原生ajax調(diào)用數(shù)據(jù)實(shí)例簡(jiǎn)單講解】相關(guān)文章:
高爾夫技巧講解11-15
導(dǎo)游講解技巧04-09
足球籬笆戰(zhàn)術(shù)講解02-20
泡茶的詳細(xì)步驟講解06-07
吉他入門(mén)技巧講解01-12
關(guān)于OrCad原理圖設(shè)計(jì)中模塊化的調(diào)用07-12
資本運(yùn)作模式的講解01-14
網(wǎng)球接發(fā)球的技巧講解11-07
象棋怎么下及口訣講解11-09