码迷,mamicode.com
首页 > Web开发 > 详细

ajax 轮循

时间:2016-10-12 18:57:28      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:

使用 AJAX 进行异步加载轮询操作。简单代码如下:

<script>

// 执行ajax轮循操作
function polling(){
var xmlhttp;
// 判断浏览器--创建对象
if ( window.XMLHttpRequest ){
xmlhttp = new XMLHttpRequest();
}else{
xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP" );
}
// 与服务器建立连接
xmlhttp.open( "GET", "polling.php", true );
// 发送请求
xmlhttp.send();
// 监听事件 回调匿名函数 判断返回值
xmlhttp.onreadystatechange = function(){
if ( xmlhttp.status == 200 && xmlhttp.readyState ==4 ){
alert( xmlhttp.responseText );
}
}
}
setInterval( "polling()", 1000 );

</script>

ajax 轮循

标签:

原文地址:http://www.cnblogs.com/gyrgyr/p/5953702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!