gpt4 book ai didi

javascript - 如果网页未加载,则显示评论/信息框的 Ajax 代码

转载 作者:行者123 更新时间:2023-11-30 16:21:02 24 4
gpt4 key购买 nike

我有下面的代码,

<script>
function AjaxLoadFWs() {
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

$('#overviewfw').load("http://test.com/test.asp");
change_overview();
change_overview_detail();
}
</script>

现在如果 http://test.com/test.asp 我需要显示一条消息 10 秒内未加载。

请问需要添加什么代码?

最佳答案

.load() 调用是 .ajax() 的便捷简写。由于您需要 10 秒的 timeout,我建议改用 ajax,因为它提供了更多选项:

$.ajax('http://test.com/test.asp', {
timeout: 10000, // 10 seconds
success: function(data, textStatus, jqXHR) {
//here you have to process the data you get
},
error: function(jqXHR, textStatus, errorThrown) {
//here you can handle the timeout.
}
});

关于javascript - 如果网页未加载,则显示评论/信息框的 Ajax 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34742471/

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