//request.html
<script type="text/javascript">
var xmlHttp;
function createXMLHttpRequest() { //創建一個xmlHttpRequest對象
if (window.ActiveXObject) {
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}
}
function dealAct(){
var url = "requestPage.php"; //請求頁面url
createXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange; //請求狀態改變事件觸發handleStateChange功能
xmlHttp.open("GET",url); //采用get方法提交數據
xmlHttp.send(null);
}
function handleStateChange(){
if(xmlHttp.readystate == 4){ //表示請求狀態 4為完成
if(xmlHttp.status == 200){ //http狀態指示碼,200表示ok
document.getElementById(infoId).innerHTML = xmlHttp.responseText; //將服務器返回信息作為文本插入到infoId指示的容器中。
}
}
else document.getElementById(infoId).innerHTML = "loading..."; //若響應未完成的話,則顯示loading..也就是摟主你要的效果了
}
</script>
<span id=infoId>[若程序被觸發,將會在此容器內顯示loading...]</span>
//requestPage.php
<?php
sleep(10); //讓程序暫停10s,以便於更好的觀察loading效果。
echo "cilentRequest recived";
?>