Ajax实现页面loading效果!_Ajax编程_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

Ajax实现页面loading效果!

作者:黑客防线网安Ajax教程基地 来源:黑客防线网安Ajax教程基地 浏览次数:0

本篇关键词:效果页面实现infoId
黑客防线网安网讯://request.html<script type="text/javascript">var xmlHttp;function createXMLHttpRequest() { //创建一个xmlHttpRequest对象if (window.ActiveXObject) {xmlHttp = new ActiveXObject("M...

//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";
?>

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-15859-1.html
网站维护教程更新时间:2012-04-05 00:08:12  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer