0

我正在更改我的问题此代码中缺少什么或错误当用户在textboxt 另一个texbox本应获取服务器时间的内容中键入内容但没有任何反应。我对编程非常缺乏经验。你能帮忙吗

protected void Page_Load(object sender, EventArgs e)
{
      Response.Expires = -1;
      Response.Write(DateTime.Now.ToShortTimeString());
      Response.End();
}

 <script type="text/javascript">
  function ajaxFunction() {
    var xmlHttp;

        xmlHttp = new XMLHttpRequest();
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {


                document.getElementById("user").value = xmlHttp.responseText;

            }
            else {
                document.getElementById("label").innerHTML = "wait";

            }


            xmlHttp.open("GET", "Default.aspx", true);
            xmlHttp.send(null);

        }
}

 </script>
<title></title>
</head>
 <body>
   <input id="user" type="text"  onkeyup="ajaxFunction()"/>
  <p>
    <input id="time" type="text" /></p>
<div id="label">
</div>
<p>
    &nbsp;</p>
 </body>
 </html>
4

1 回答 1

0

您错误地调用了实际启动请求

function ajaxFunction() {
    var xmlHttp;
    xmlHttp = new XMLHttpRequest();
    xmlHttp.onreadystatechange = function () {
        if (xmlHttp.readyState == 4) {
            document.getElementById("user").value = xmlHttp.responseText;
        } // closes the if
        else {
            document.getElementById("label").innerHTML = "wait";
        } // closes the else
    } // closes the function() for onreadystatechange
    // call the stuff
    xmlHttp.open("GET", "Default.aspx", true);
    xmlHttp.send(null);
}
于 2013-08-17T10:00:16.710 回答