我一直在进行像COBOL这样的编程编程,现在正在尝试学习AJAX。
我在w3schools看到了这段代码,并提出以下问题?
问题: 1. xmlhttp.onreadystatechange = function()如何评估此函数。是否需要在评估返回之前执行xmlhttp.open()和xmlhttp.send()?
<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","ajax_info.txt",true);
xmlhttp.send();
}
</script>
</head>
<body>
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>
</body>
</html>
答案 0 :(得分:0)
A JAX是异步。
致电send()
后,浏览器将在后台发送请求。
当服务器回复时,浏览器将调用您的onreadystatechange
处理程序;这在代码的其余部分运行一段时间后发生。