我正在学习使用 xmlhttprequest/AJAX。在 w3schools 的这个示例代码中,我不明白为什么这行:
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
在此之前:
xmlhttp.open("GET","demo_get.asp",true);
xmlhttp.send();
我正在考虑的方式是,您应该在有任何 responseText 做任何事情之前发送 GET 请求。我的理解错误在哪里?
<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","demo_get.asp",true);
xmlhttp.send();
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">Request data</button>
<div id="myDiv"></div>
</body>
</html>