这是我的代码片段,由于xmlhttp.readyState没有更改为4,因此无法理解这有什么问题。
document.getElementById("opencloseimg").src = "images/minus.jpg";
//The page we are loading.
var serverPage = "calendar.php";
//Set the open close tracker variable.
showCalendar = false;
var obj = document.getElementById(objID);
xmlhttp.open("GET", serverPage,true);
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
obj.innerHTML = xmlhttp.responseText;
}
}
xmlhttp.send(null);
答案 0 :(得分:0)
可能是因为您提取的网址不可用?
您是否在JavaScript控制台中看到任何错误?
在状态转换功能的开头显示消息:
xmlhttp.onreadystatechange = function() {
console.log ('xmlhttp : ' + xmlhttp.readyState + ', ' + xmlhttp.status);
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
obj.innerHTML = xmlhttp.responseText;
}
查看显示的内容。
答案 1 :(得分:0)
也许响应状态代码不是200,可能是304(未修改)等。