我有这两个按钮,用户可以单击以批准/拒绝网站上的某个人,并且代码在IE中运行完美,但是当我尝试使用Firefox时,单击按钮时什么也没发生。< / p>
javascipt / ajax代码是:
function ApproveOrDenyStudent(i, action){
if (window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else{
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
var newStudentEmail = "newStudentEmail" + i;
var emailField = document.getElementById(newStudentEmail);
var email = emailField ? emailField.value : '';
// Approve/deny the user
if (action == 0){
xmlhttp.open("GET","ApproveStudent.php?email="+email,true);
}
else if (action == 1){
xmlhttp.open("GET","DenyStudent.php?email="+email,true);
}
xmlhttp.send();
window.location.reload();
}
任何帮助都会很棒!谢谢!
答案 0 :(得分:2)
你有竞争条件!
xmlhttp.send();
window.location.reload();
您正在进行异步调用。您正在制作Ajax请求并立即更换页面!对服务器的调用没有结束。
请求完成后重新加载页面。
xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 4){
window.location.reload(true);
}
};
xmlhttp.send();