我是AJAX的新手,我正在关注w3cSchool.com的教程。
我基本上在我的桌面上设置了一个info.txt文件(虚拟数据)并在我的桌面上运行一个html页面(例如在同一个文件夹下)来获取文本,但我最终没有任何结果。当我查看我的xmlhttp.status时,它返回0值,这对我没有意义(值应该是200或404)
请帮助我,非常感谢!
这是我的HTML代码:
<!DOCTYPE html>
<html>
<head>
<script>
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;
}
else
{
document.getElementById("myDiv").innerHTML=xmlhttp.status;
}
}
xmlhttp.open("GET","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>
这是我的info.txt代码:
<p>123</p>
<p>AJAX is a technique for creating fast and dynamic web pages.</p>