F103作为服务器,做了一个网页想1s刷新一次页面,想利用AJAX实现局部刷新,只刷新显示数据。
从W3School参考的示例代码如下:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{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/demo_get.asp",true);
xmlhttp.send();
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">请求数据</button>
<div id="myDiv"></div>
</body>
</html>
但是在chrome浏览器里输入IP地址,单击按钮后,用wireshark抓包,没有向/ajax/demo_get.asp请求数据,比知道什么原因,是上面的代码不正确还是其他的原因?求大神出现! |