如何在Javascript中自动刷新XML

时间:2013-04-21 08:16:46

标签: javascript xml

以下是我遇到问题的代码 -

<script type="text/javascript" language="javascript">

    function loadXMLDoc()
    {
        var xmlhttp;
        if (window.XMLHttpRequest)
        {// code for IE7+, Firefox, Chrome, Opera, Safari
            xmlhttp=new XMLHttpRequest();
        }
        else
        {// code for IE6, IE5
            xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
            xmlhttp.onreadystatechange=function()
        {
        if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
            document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
        }
        }
        xmlhttp.open("GET","<%=StatsURL%>",true);
        xmlhttp.send();
    }

    function timedRefresh(timeoutPeriod) {
        setTimeout(function(){loadXMLDoc(); autoRefresh();},timeoutPeriod);
    }
    </script>

这是在 -

中调用的
<body onload="JavaScript:timedRefresh(50000);">
<div id="myDiv"></div>
</body>

我想每隔5秒刷新页面/加载XML,但上面的代码似乎不起作用。我已阅读(http://www.htmlgoodies.com/tutorials/getting_started/article.php/3479551/Reloading-The-Page.htm)您可以使用META标签()来刷新页面。

非常感谢任何有助于使此代码正常工作的帮助。

ANSWER

将代码更改为以下内容 -

window.onload = startInterval();

    function startInterval()
    {
        setInterval("loadXMLDoc();", 5000);
    }

1 个答案:

答案 0 :(得分:0)

那是因为你每50秒刷新一次页面(50000毫秒)。将其更改为5000并且它将起作用。