httprequest不起作用



我有以下代码,但我的 <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>

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

我在做什么错?

结果已正确交付到我的页面,因为我尝试了回声并确实显示出来,因此它必须在此代码中。

感谢您的时间!

您错过了半隆:

xmlhttp.onreadystatechange=function()
      {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
        {
        document.getElementById("results").innerHTML=xmlhttp.responseText;
        }
      };
       ^------ HERE

相关内容

  • 没有找到相关文章

最新更新