gpt4 book ai didi

javascript - onreadystatechange 未定义错误

转载 作者:行者123 更新时间:2023-11-28 19:19:29 24 4
gpt4 key购买 nike

一个多小时以来,我一直在尝试调试我的代码,但没有成功。我意识到ajax的异步调用意味着我必须将回调函数与onreadystatechange事件结合使用。问题是,我在控制台中不断收到“Uncaught TypeError: undefined is not a function xmlhttp.onreadystatechange”消息。我的代码有什么问题吗?我按照 http://www.w3schools.com/ajax/tryit.asp?filename=tryajax_suggest_php 上的模板进行操作我看不出有什么区别。

window.onload = function() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
var obj = JSON.parse(xmlhttp.responseText);
document.getElementbyId("table").innerHTML = "Test";
}
}
xmlhttp.open("GET", "bookstore.php?filename=bookstore.json", true);
xmlhttp.send();
}

最佳答案

我看到的唯一问题是 getElementbyId 应该是 getElementById (大写 B)

关于javascript - onreadystatechange 未定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29135706/

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