我的 HTML 文件中的代码:
<!doctype html>
<head>
<title>Notes</title>
<script>
function PullNotes() {
var txtFile = new XMLHttpRequest();
txtFile.open("GET", "notes.txt", true);
txtFile.onreadystatechange = function() {
if (txtFile.readyState === 4 || txtFile.status == 200) {
allText = txtFile.responseText;
}
document.getElementById('notetext').innerHTML = allText;
}
}
</script>
</head>
<body>
<div id="notetext"><p>Failed.</p></div>
<input type="button" value="Pull Notes" onClick="PullNotes()">
</body>
</html>
当我点击按钮时。没啥事儿。
如果您想知道为什么它说“失败”,那么我知道 JavaScript 没有更新。
谢谢,~BN