Heim >Backend-Entwicklung >PHP-Tutorial >急js5秒调用一次test.php js如何写 没分了哪位帮帮忙

急js5秒调用一次test.php js如何写 没分了哪位帮帮忙

WBOY
WBOYOriginal
2016-06-13 10:21:58921Durchsuche

急急急,js5秒调用一次test.php js怎么写 没分了哪位帮帮忙

js页面
function SendMail()
{
}
js5秒调用一次test.php

------解决方案--------------------
仅供参考:

JScript code
var xmlHttp;var timer = null;var timerRunning = false;var url;    function createXMLHttpRequest() {        if(window.XMLHttpRequest) {            xmlHttp = new XMLHttpRequest();        } else if (window.ActiveXObject) {            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");        }    }    function statusStop (){        if(timerRunning){              clearTimeout(timer);        }        timerRunning = true;    }    /* ------------------- 间隔查询 ------------------- */    function autoDeep(){        createXMLHttpRequest();        url = "map.php?refresh="+Math.random();        method = "GET";        xmlHttp.open(method,url,true);        xmlHttp.onreadystatechange = null;        xmlHttp.send(null);        timerRunning = false;        timer = setTimeout('autoDeep()',5000);  //5秒执行一次    }    function statusBegin(){        statusStop();        autoDeep();    }    statusBegin();<div class="clear">
                 
              
              
        
            </div>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn