我有这个代码的问题。我想使用XML Http Object请求从.txt doc读取文本文件。代码运行但没有任何反应,div的内容发生变化(按钮消失)但不是使用我的.txt doc文件
<!DOCTYPE html>
<html>
<body>
<h2>Using the XMLHttpRequest Object</h2>
<div id="demo">
<button type="button" onclick="loadXMLDoc()">Change Content</button>
</div>
<script>
function loadXMLDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
document.getElementById("demo").innerHTML =
this.responseText;
};
xhttp.open("GET", "text.txt", true);
xhttp.send();
}
</script>
</body>