0

我有以下代码,但我<a onclick="meldaan()">Aanmelden</a>的不工作。该函数不会被调用。

这是功能:

<script type="text/javascript">
function meldaan()
{
    var voornaam = document.getElementById('voornaam').value;
    var achternaam = document.getElementById('achternaam').value;
    var email = document.getElementById('email').value;
    var password = document.getElementById('password').value;

    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("results").innerHTML=xmlhttp.responseText;
        }
      }
    xmlhttp.open("GET","aanmelden.php?naam=" + encodeURIComponent(voornaam) + "&achternaam=" + encodeURIComponent(achternaam) + "&email=" + encodeURIComponent(email) + "&password=" 
    + encodeURIComponent(password),true);
    xmlhttp.send();
    }

</script>

我将函数放置在我的 header.php 文件中,该文件包含在 footer.php (所在<a onclick="meldaan()">Aanmelden</a>的位置。

我究竟做错了什么?

结果已正确传递到我的页面,因为我尝试回显某些内容并且确实显示了,因此它必须在此代码中。

谢谢你的时间!

4

1 回答 1

0

你错过了一个分号:

xmlhttp.onreadystatechange=function()
      {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
        document.getElementById("results").innerHTML=xmlhttp.responseText;
        }
      };
       ^------ HERE
于 2012-11-03T21:37:25.687 回答