gpt4 book ai didi

jquery - 在 jQuery .load 上设置超时

转载 作者:行者123 更新时间:2023-12-01 00:05:20 26 4
gpt4 key购买 nike

我想在 5 秒后超时,然后显示“无法获取页面”。但我不知道该怎么做...这是我到目前为止所得到的...

$(document).ready(function() {
$('#content').html('<br><br><br><br><img src="load.gif" border="0"><br><br><strong>Generating Link...</strong>');
$("#content").load("ajax.php");
})

最佳答案

var tick = function() {
$("#content").html('Unable to fetch page!');
}

$(document).ready(function() {

var loadTimeout = setTimeout(tick, 5100);

$.ajax({
url: "ajax.php",
timeout: 5000,
success: function(data) {
$("#content").html(data);
clearTimeout(loadTimeout);
}
});

})

关于jquery - 在 jQuery .load 上设置超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1540959/

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