gpt4 book ai didi

javascript - 使用ajax/javascript将文本文件中的数据加载到html问题

转载 作者:行者123 更新时间:2023-11-28 02:14:52 24 4
gpt4 key购买 nike

我想从这个文本文件加载数据,该文件与我的计算机上的 html 文件位于同一文件夹中,但它不起作用。在学习 Ajax 的过程中,我为自己编写了这个小测试 test.html 和文本文件 test.txt。如有任何建议,将不胜感激。

<!DOCTYPE html>
<html>
<head>
<title>test</title>
<script>
function loadData()
{
var test;
test=new XMLHttpRequest();
test.onreadystatechange=function()
{
if (test.readyState==4 && test.status==200)
{
document.getElementById("test").innerHTML=test.responseText;
}
}
test.open("GET","test.txt",true);
test.send();
}
</script>
</head>
<body>
<div id="test"></div>
<button type="button" onclick="loadData()">Get data</button>
</body>
</html>

当我按下按钮时,没有任何反应。在我看到类似示例的网站上,文本文件中的数据显示在按钮上方。

最佳答案

问题可能是您直接在本地系统上访问文件;网络浏览器被设计为不允许这样做,以防止保存的网页从磁盘加载个人文件并将其上传到远程服务器。为了使其正常工作,您需要在本地运行 Web 服务器并使用它来查看文件。我推荐 Apache Web 服务器,它很灵活,可以在 Windows、Linux 或 OSX 上使用。

关于javascript - 使用ajax/javascript将文本文件中的数据加载到html问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16529170/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com