gpt4 book ai didi

javascript - 使用 Ajax 从另一个文件加载数据

转载 作者:行者123 更新时间:2023-12-02 15:42:32 27 4
gpt4 key购买 nike

我正在尝试开始使用 Ajax,所以我只是尝试通过单击按钮从文件中加载一些内容,但其他文件的内容未加载

<!DOCTYPE html>
<html>
<head>
<script>
function loadData()
{
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("output").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","a1.html",true);
xmlhttp.send();
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadData()">Request data</button>
<div id="output"></div>
</body>
</html>

a1.html 文件与此 html 文件位于同一文件夹下。

最佳答案

我明白了,我必须从服务器请求该页面。不仅仅是本地主机

关于javascript - 使用 Ajax 从另一个文件加载数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32456404/

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