步驟一:創(chuàng)建XMLHttpRequest對象
? ? ? ? ? ? ? variable=new XMLHttpRequest();
? ? ? ? ? ? ? variable=new ActiveXObject("Microsoft.XMLHTTP") ? ? ? ?(IE5、IE6)
步驟二:向服務(wù)器發(fā)出請求
? ? ? ? ? ? ? GET:xmlhttp.open("GET/POST","url:請求的文件在服務(wù)器上的位置",true/false);
? ? ? ? ? ? ? ? ? ? ? ? xmlhttp.send();
? ? ? ? POST: xmlhttp.open("POST","/try/ajax/demo_post2.php",true);
? ? ? ? ? ? ? ? ? ? ? xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
? ? ? ? ? ? ? ? ? ? ? xmlhttp.send("fname=Henry&lname=Ford");
步驟三:服務(wù)器響應(yīng)返回值
? ? ? ? ? ? ? ?可以返回responseText或者responseXML
狀態(tài)信息:
回調(diào)函數(shù):
? ? ??
AJAX的應(yīng)用——輸入框猜值