所以我是AJAX的新手,并且我正在尝试运行此代码。我希望它通过使用contact.txt文件中的内容来更改段落文本,但是在运行代码时会出错:
“ SCRIPT5:访问被拒绝。”
我正在使用IE-11来运行代码。
我的代码如下:
<!DOCTYPE html>
<html>
<body>
<h1>The XMLHttpRequest Object</h1>
<p id="demo">Let AJAX change this text.</p>
<button type="button" onclick="loadDoc()">Change Content</button>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML = this.responseText;
}
};
xhttp.open("GET", "'C:\Users\muhdhazlan\Desktop\contact.txt'", true);
xhttp.send();
}
</script>
</body>
</html>