所以,我尝试创建一个网站,所以当你点击一个按钮时,它会显示一个文本,保存在同一个文件夹中.html
<!DOCTYPE html>
<html>
<body>
<div id="site">
<button type="button" onclick="loadDoc()">Obtener texto</button>
</div>
<script src = "libraryxhr.js"></script>
</body>
</html>
And the .js
var xhr = new XMLHttpRequest();
function loadDoc() {
xhr.open("GET", "Prueba.txt", true);
xhr.send();
document.getElementById("site").innerHTML = xhr.responseText;
}
它不会加载文件;当我在浏览器上按f12时没有显示任何内容,但是当我按下按钮时,检查事件在send()方法中显示错误,说:&#34;交叉源请求仅支持协议方案:http,data ,铬,镀铬扩展,https&#34;
我正在使用Ubuntu17.04,以防万一。