gpt4 book ai didi

ajax - 在ajax获取文件内容时显示加载图像

转载 作者:行者123 更新时间:2023-12-05 00:34:33 29 4
gpt4 key购买 nike

我是 ajax 的新手并阅读了一些 tuts 来制作一个包含多个按钮的 lil 脚本,点击每个按钮都会在特定的 div 中加载一个 php 文件。为此我使用这个

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("1").innerHTML=xmlhttp.responseText;
  }
}
xmlhttp.open("GET","feedchck.php",true);
xmlhttp.send();
}

操作按钮:
<button type="button" onclick="loadXMLDoc();">Request</button>
<div id="1">asdf</div>

我完成了这部分,然后单击 php 文件完美加载。但因为它需要时间来处理它显示空白区域。那么是否可以在处理时显示正在加载的图像或文本,并在完成后隐藏图像并显示文件内容?
感谢帮助:}
干杯

最佳答案

<button type="button" onclick="loadXMLDoc();">Request</button>
<!--An empty tag - this be the loading image-->
<span id="loading"></span>
<div id="1">asdf</div>

<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("loading").innerHTML = ''; // Hide the image after the response from the server
document.getElementById("1").innerHTML = xmlhttp.responseText;
}
}
document.getElementById("loading").innerHTML = '<img src="../loading.gif" />'; // Set here the image before sending request
xmlhttp.open("GET", "feedchck.php", true);
xmlhttp.send();
}
</script>

关于ajax - 在ajax获取文件内容时显示加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10646805/

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