<script language="javascript">
var xmlHttp;
  function creat()
  {
    
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");


}
catch(e)
{
xmlHttp=new XMLHttpRequest();


}
  }
  function clinct()
{
var url="456.php";//指定数据提交方式
xmlHttp.open("Get",url,true);
//当数据发送完后,去响应客户端的行为setTimeout(test,5000);
//发送http请求
xmlHttp.send();
 }
</script>我现在要用异步来控制456.php 页面的执行! 让他每5分钟执行一次!