gpt4 book ai didi

javascript - 在简单的 jQuery 函数中切换

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

假设我得到了这个小span,我无法修改它的结构或提供任何周围的元素。就是这样。但现在我想在其中显示另一个文本,并且我希望它们相互切换。

示例:第一个文本停留 1 秒 -> 淡出,其他文本将显示 -> 重复至无限。

是否可以仅使用toggle()函数来存档它?我尝试了一下,但没有任何效果。

$(function() {

$('#test').delay(1000).fadeOut(750, function() {
$(this).text('Some other text!').fadeIn(500);
});

});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<span id="test">This Text!</span>

最佳答案

你可以这样做。

希望这对您有帮助

setInterval(function() {
$("#test").fadeOut(750, function() {
if ($(this).text() == "This Text!") {
$(this).text("Some other text!").fadeIn(500);
} else {
$(this).text("This Text!").fadeIn(500);
}
});
}, 1500);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<span id="test">This Text!</span>

关于javascript - 在简单的 jQuery 函数中切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59087829/

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