AJAX xmlhttp.open未运行脚本

时间:2012-06-15 18:59:59

标签: php javascript html xml ajax

我正在修改此处的教程:http://www.w3schools.com/ajax/ajax_aspphp.asp 以便自动完成名称库存储在数据库中。我添加了一个按钮,允许用户在数据库中添加名称(如果数据库中尚未包含该名称)。当我单击该按钮时,该方法将触发,但是addName()方法中指定的php脚本不会执行。这很奇怪,因为showHint()方法中定义的脚本确实执行。这是我的javascript(这是所有必须显示的)。我省略了脚本:

    <!DOCTYPE html>
<html>
<head>
    <script type="text/javascript">
        function showHint(str)
        {
            var xmlhttp;
            if (str.length==0)
            {
                document.getElementById("txtHint").innerHTML="";
                return;
            }
            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("txtHint").innerHTML=xmlhttp.responseText;
                }
            }
            xmlhttp.open("GET","gethint.php?q="+str,true);
            xmlhttp.send();
        }

        function addName(str){
            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.open("GET","addName.php?q="+str,true);
            xmlhttp.send();
        }
    </script>
</head>
<body>

<h3>Start typing a name in the input field below:</h3>
<form action="">
    First name: <input type="text" id="txt1" onkeyup="showHint(this.value)" />
</form>
<p>Suggestions: <span id="txtHint"></span></p>
<button type="button" onclick="addName(document.getElementById('txt1').value)">Add Name</button>

</body>
</html>

3 个答案:

答案 0 :(得分:0)

添加onreadystatechange并查看http状态调用,看看是否有错误。

使用Fiddler或Firebug等工具查看请求是否结束。

你应该对str进行网址编码。

答案 1 :(得分:0)

请以这种方式更改您的代码

<form action="">
    First name: <input type="text" id="txt1" value="ABC-XYZ" onkeyup="showHint(this.value)" />
</form>

答案 2 :(得分:0)

像这样:

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

  function showHint(str) {
      var xmlhttp;
      if (str.length==0) {
          document.getElementById("txtHint").innerHTML="";
          return;
      }
      xmlhttp = getXhr();
      xmlhttp.onreadystatechange= function() {
          if (xmlhttp.readyState==4 && xmlhttp.status==200) {
            document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
          }
      };
      xmlhttp.open("GET","gethint.php?q="+str,true);
      xmlhttp.send();
  }

  function addName(str) {
      var xmlhttp = getXhr();
      xmlhttp.onreadystatechange= function() {
         ...your logic here...
      };
      xmlhttp.open("GET","addName.php?q="+str, true);
      xmlhttp.send();
  }