gpt4 book ai didi

javascript - 引用错误 : xmlhttp is not defined

转载 作者:行者123 更新时间:2023-12-05 00:27:45 27 4
gpt4 key购买 nike

我的 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);
}

最佳答案

你有一个错字。 XMLHttpRequest使用局部变量名 xmlhttpp 创建对象.

改变

 xmlhttp.responseText;


xmlhttpp.responseText;
// ^ missing p

关于javascript - 引用错误 : xmlhttp is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20137051/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com