我正在尝试快速掌握AJAX和JQuery,并按照W3Schools网站上的教程进行操作。在此tutorial中,按钮被禁止让AJAX使用文件中的文本更改文本,这将无法在我的PC上运行。在与HTML文件相同的位置,我有一个名为“ajax_info.txt”的文件,其中包含以下文本 -
AJAX不是一种新的编程语言。
AJAX是一种用于创建快速动态网页的技术。
这是我的代码,为什么它不起作用?
<!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;
}
}
xmlhttp.open("GET", "ajax_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>
答案 0 :(得分:0)
您所面临的是错误(如果您检查浏览器控制台)
Cross origin requests are only supported for HTTP
因为你没有使用本地服务器。尝试使用Visual Studio或任何类似的本地服务器
运行它