我是 AJAX 新手,我正在学习 w3cSchool.com 的教程。
我在我的桌面上基本设置了一个 info.txt 文件(虚拟数据)并在我的桌面上运行一个 html 页面(ig 在同一文件夹下)以获取文本,但我最终什么也没有。当我检查我的 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>