我刚开始从W3Schools学习AJAX。 复制粘贴他们的第一个示例代码并在我的PC上运行它。 它适用于FF,但在Chrome上失败了。 有人可以告诉我为什么会这样吗?
我的FF / Chrome屏幕截图
<!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 :(得分:1)
您需要使用此参数启动chrome才能访问本地文件
- 允许文件存取从-文件
例如:c:\ Browser \ chrome.exe --allow-file-access-from-files