gpt4 book ai didi

javascript - 为什么这个 jquery 函数在 .animate() 之后不重复?

转载 作者:行者123 更新时间:2023-11-28 15:41:01 25 4
gpt4 key购买 nike

这个函数不重复有什么原因吗?

var $title = $('#title');
var animateGlow = function($title) {
$title.animate({ 'color':'red' }, 2000)
.animate({ 'color':'blue' }, 2000, function() {
animateGlow(this);
});
};
animateGlow($title);

最佳答案

传递$(this)而不是this,原生对象没有animate功能

使用

var $title = $('#title');
var animateGlow = function ($title) {
$title.animate({
'color': 'red'
}, 2000).animate({
'color': 'blue'
}, 2000, function () {
animateGlow($(this));
});
};
animateGlow($title);

关于javascript - 为什么这个 jquery 函数在 .animate() 之后不重复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23759611/

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