我不确定我的所有文件都在同一个文件夹中有什么问题。首先我将发布 HTML,然后是 AJAX,最后是 .txt 文件。
HTML:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Title of webpage</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="javascript.js"></script>
</head>
<body>
<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button onclick="loadXMLDoc()">Change Content</button>
</body>
</html>
还有我的 javascript/AJAX:
function loadXMLDoc(){
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange=function(){
if (xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET", "test.txt", true);
xmlhttp.send();
}
还有我的 .txt 文件:
<h3>This text was changed</h3>
<p>And also I added a random paragraph</p>
预先感谢您的帮助。