我有以下代码,但我的<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>
所在的位置。
我做错了什么?
结果已正确传递到我的页面,因为我尝试回显某些内容但它确实显示出来,所以它必须在此代码中。
谢谢你的时间!
答案 0 :(得分:0)
你错过了一个分号:
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("results").innerHTML=xmlhttp.responseText;
}
};
^------ HERE