当前位置: 代码迷 >> Web开发 >> xmlhttp.onreadystatechange 什么意思?解决办法
  详细解决方案

xmlhttp.onreadystatechange 什么意思?解决办法

热度:1011   发布时间:2012-12-22 12:05:07.0
xmlhttp.onreadystatechange 什么意思?
<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()//这里理解  是什么意思 是指调用loadXMLDoc()的button的状态改变时触发嘛?即点击时执行
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","http://www.baidu.com",true);
xmlhttp.send();
}
</script>
</head>
<body>

<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">请求数据</button>
<div id="myDiv"></div>

</body>
</html>

没分了 ~~~~(>_<)~~~~ 

------解决方案--------------------
http://www.w3school.com.cn/ajax/ajax_xmlhttprequest_onreadystatechange.asp


参考下
------解决方案--------------------
引用:
http://www.w3school.com.cn/ajax/ajax_xmlhttprequest_onreadystatechange.asp


参考下

呵呵 谢谢 昨天看到这里了  忘了来结贴了 O(∩_∩)O~
  相关解决方案