<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
参考下
------解决方案--------------------
呵呵 谢谢 昨天看到这里了 忘了来结贴了 O(∩_∩)O~