gpt4 book ai didi

jquery - 几秒钟后切换图标模式

转载 作者:行者123 更新时间:2023-12-01 07:48:04 25 4
gpt4 key购买 nike

您好,有以下ajax函数。单击链接后,图标应从“关闭”图标替换为“工作”图标,工作结束时图标应替换为“打开”。

我希望图标在“打开”状态几秒钟后切换回“关闭”。有人可以告诉我该怎么做吗?我是 Ajax 的新手。

$.ajax({
url: '/work', type: "GET",
beforeSend: function (data, jqXHR) {
$('#status').attr("src", "/img/_working.gif");
},
success: function (data, textStatus, jqXHR) {
$('#status').attr("src", "/img/_on.png");
$("#work").html(data)
$("#work").show()
},
error: function (jqXHR, textStatus, errorThrown) {
$('#status').attr("src", "/img/_error.gif");
alert('error')
}
});

<img src="/img/_off.png" class="img-swap" id="status" style="width: 20px;height: 20px;"/>

最佳答案

尝试设置超时:

setTimeout(function(){ $('#status').attr("src", "/img/_off.png"); }, 3000);

其中 3000 是以毫秒为单位的时间延迟

关于jquery - 几秒钟后切换图标模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33889898/

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