AJax技术

php+ajax实现页面自动刷新时间

字号+ 作者:H5之家 来源:H5之家 2017-05-10 16:01 我要评论( )

index.php view plaincopy to clipboardprint? mce:script type=text/javascript!-- var xmlHttp; function createXMLHttpRequest(){ if(window.ActiveXObject){ xmlHttp = new ActiveXObject(Microsoft.XMLHTTP); } else if(window.XMLHttpRequest){ xmlHtt

index.php

 view plaincopy to clipboardprint?
<mce:script type="text/javascript"><!--  
var xmlHttp;  
function createXMLHttpRequest(){  
    if(window.ActiveXObject){  
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");  
    }  
    else if(window.XMLHttpRequest){  
        xmlHttp = new XMLHttpRequest();  
    }  
}  
function start(){  
    createXMLHttpRequest();  
    var url="getTime.php";  
    xmlHttp.open("GET",url,true);  
    xmlHttp.onreadystatechange = callback;  
    xmlHttp.send(null);  
}  
function callback(){  
    if(xmlHttp.readyState == 4){  
        if(xmlHttp.status == 200){  
            document.getElementById("showtime").innerHTML = xmlHttp.responseText;  
            setTimeout("start()",1000);  
        }  
    }  
}  
// --></mce:script>  
 
 
<html>  
<head>  
<meta http-equiv="content-type" content="text/html;charset=gb2312" />  
</head>  
<body>  
<h1>Ajax动态显示时间</h1>  
<input type="button" value="开始显示时间" id="go" onclick="start()" />  
<p>当前时间:<font color="red"><span id="showtime"></span></font></p>  
</body>  
</html> 
<mce:script type="text/javascript"><!--
var xmlHttp;
function createXMLHttpRequest(){
 if(window.ActiveXObject){
  xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else if(window.XMLHttpRequest){
  xmlHttp = new XMLHttpRequest();
 }
}
function start(){
 createXMLHttpRequest();
 var url="getTime.php";
 xmlHttp.open("GET",url,true);
 xmlHttp.onreadystatechange = callback;
 xmlHttp.send(null);
}
function callback(){
 if(xmlHttp.readyState == 4){
  if(xmlHttp.status == 200){
   document.getElementById("showtime").innerHTML = xmlHttp.responseText;
   setTimeout("start()",1000);
  }
 }
}
// --></mce:script>


<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gb2312" />
</head>
<body>
<h1>Ajax动态显示时间</h1>
<input type="button" value="开始显示时间" id="go" onclick="start()" />
<p>当前时间:<font color="red"><span id="showtime"></span></font></p>
</body>
</html>

getTime.php


view plaincopy to clipboardprint?
<?php  
header("cache-control:no-cache,must-revalidate");  
header("Content-Type:text/html;charset=gb2312");  
$showtime = date("北京时间Y年m月d日H:i:s");  
echo $showtime;  
?> 

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • AJAX asp.net分页 简单实现Ajax无刷新分页效果

    AJAX asp.net分页 简单实现Ajax无刷新分页效果

    2017-05-10 09:07

  • php+html5+ajax实现上传图片的方法

    php+html5+ajax实现上传图片的方法

    2017-05-06 18:00

  • Struts2结合Ajax实现登录

    Struts2结合Ajax实现登录

    2017-05-06 13:12

  • 使用JavaScript实现ajax的实例代码

    使用JavaScript实现ajax的实例代码

    2017-05-06 08:03

网友点评