XMLHttpRequest ajax調用無重新整理顯示後台時間

來源:互聯網
上載者:User

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>無標題頁</title>
</head>

代碼

  <script type="text/javascript" >
    var timeout = null; //setInterval函數控制代碼   
    var xmlHttp = false; // 
    function SendRequest()
    {
        //xmlHttp = false; 
        if (window.ActiveXObject)
        {   
            try 
            {
                xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
            }    
            catch (e) 
            {
                xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            }   
        }
        else if (window.XMLHttpRequest) 
        {
            xmlHttp = new XMLHttpRequest();
        } 
        else
        {
            alert('初始化錯誤!');
            return;
        }
        var url = "Handler.ashx";
        //var url = "Default2.aspx";
        xmlHttp.open("GET",url,true);
        xmlHttp.onreadystatechange = ShowData;
        xmlHttp.send(null);
    }
    function ShowData()
    {
        if(xmlHttp.readystate == 4)
        {
            if(xmlHttp.status == 200)
            {
                var tag = document.getElementById("container");
                tag.innerHTML = "";
                tag.innerHTML = xmlHttp.responseText;
            }  
        }
    }

    //開始自動重新整理   
    function Update() 
    {   
        timeout = window.setInterval("SendRequest()", 1000);//設定1秒調用一次Default2.aspx頁面   
    }   
    //停止自動重新整理   
    function StopUpdate() 
    {   
        if (timeout != null) 
        {   
            window.clearInterval(timeout);   
        }   
    }
</script>

 

<body onload="SendRequest();">
    <form id="form1" runat="server">
    <div>
        <input type="button" value="Start Fresh" onclick="Update();"/> 
        <input type="button" value="Stop Fresh" onclick="StopUpdate();"/>
        <input id="Button1" type="button" value="確定" onclick="SendRequest();"/>
    </div>
    </form>
    <div id="container"><!--容器--></div>
</body>
</html>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.