我的AJAX无法正常工作,我无法弄明白为什么。我错过了什么?
ReferenceError:未定义xmlhttp @ javascript.js:5
function insapts(pin){
if (window.XMLHttpRequest){ xmlhttpp=new XMLHttpRequest(); }else{ xmlhttpp=new ActiveXObject("Microsoft.XMLHTTP"); }
xmlhttpp.onreadystatechange=function(){
if(xmlhttpp.readyState==4 && xmlhttpp.status==200){
document.getElementById('apttimeins').innerHTML = xmlhttp.responseText;
}
}
var url = "bridge3.php?pin="+pin;
xmlhttpp.open("GET",url,false);
xmlhttpp.send(null);
}
答案 0 :(得分:5)
你有一个错字。使用局部变量名XMLHttpRequest
创建xmlhttpp
对象。
更改
xmlhttp.responseText;
到
xmlhttpp.responseText;
// ^ missing p