gpt4 book ai didi

javascript - Jquery在一秒后隐藏gif

转载 作者:行者123 更新时间:2023-11-28 17:54:34 34 4
gpt4 key购买 nike

我尝试在一秒钟后隐藏我的 gif 图像:

 $('input.sortInp').change(function () {
$(this).parents('.float_left').find('.sortLoaderDiv').html('<img class="sortLoader" src="/images/icons/loading_small1.gif">');

setTimeout(function () {
$(this).parents('.float_left').find('.sortLoaderDiv').html("Some text");
},1000);

});

我看到了我的 gif,但它没有隐藏在我的 setTimeout 函数中。
我怎样才能停止这个gif并替换div文本?谢谢。

最佳答案

试试这个

$('input.sortInp').change(function () {
var input = $(this);

input.parents('.float_left').find('.sortLoaderDiv').html('<img
class="sortLoader" src="/images/icons/loading_small1.gif">');

setTimeout(function () {
input.parents('.float_left').find('.sortLoaderDiv').html("Some text");
}, 1000);

});

关于javascript - Jquery在一秒后隐藏gif,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44759487/

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