專注于為中小企業(yè)提供成都做網(wǎng)站、網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)臨清免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上千余家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
傳統(tǒng)的請求和Ajax請求
Asynchronous JavaScript and XML. Ajax異步的,JavaScript程序希望與服務(wù)器直接通信而不需要重新加載頁面。
1.創(chuàng)建請求對象
function requestObject(){ if(window.XMLHttpRequest){ return new XMLHttpRequest(); }else if{ return new ActiveXObject('Mxsml2.XMLHTTP'); }else{ throw new Error("Could not create HTTP request object."); } }
2.建立請求
var request=requestObject();
request.open("GET","data.txt",true);
3.發(fā)送請求
request.send(null);
4.處理請求(XML和JSON兩種格式)
request.onreadystatechange=function(){ if(request.readyState==4){ console.log(request.status+":"+request.statusText); } }