// 創建xmlhttpRequest對象
var xh=null;
if(window.ActiveXObject){
xh=new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xh= new XMLHttpRequest();
}
//第二步 設置回調函數,狀態變化後所執行的函數
xh.onreadystatechange = function() {
if (xh.readyState == 4) {
if (xh.status == 200) {
console.log(xh.pesponseText);
}
}
}
//第三步 設置method和地址action
xh.open('get',/querystu);
//第四步 發送
xh.send();