利用JS 模擬 php timer 觸發事件



<script type="text/javascript">

var milliSeconds = 2000;
//milliSeconds 設定定時觸發毫秒數
setInterval( function() {

 var xmlhttp;

 if (window.XMLHttpRequest) // code for IE7+, Firefox, Chrome, Opera, Safari
 {
         xmlhttp=new XMLHttpRequest();
 }
 else{
         xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); // code for IE6, IE5
        }

 xmlhttp.onreadystatechange=function()
 {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
  {
   console.log ( xmlhttp.responseText );
  } 
 }

 xmlhttp.open("POST","http://your.url.php",true);
        //要觸發開啟的php位置
 xmlhttp.send();

        }, milliSeconds);
  
</script>

沒有留言:

張貼留言