gpt4 book ai didi

javascript - 在 .each() 中调用函数

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:21:49 25 4
gpt4 key购买 nike

我想从内部重复从 .animate() 开始的链式事件(由注释表示)。正确的写法是什么?

$("div").each(function(i, e){  
$(this).animate({ left: $(this).parent().width() }, d[i], "linear",
function(){ $(this).css({left: -parseInt($(this).css("width")) })
//would like to call function at this stage
});
})

这最终成功了:

   $("div").each( v = function(i, e){  
$(this).animate({ left: $(this).parent().width() }, d[i], "linear",
function(){ $(this).css({left: -parseInt($(this).css("width")) })
v();
});
});

最佳答案

像这样?

$("div").each(function(i, e){  
$(this).animate({ left: $(this).parent().width() }, d[i], "linear",
v = function(i){
$(this).css({left: -parseInt($(this).css("width")) })
if(i == null) v(1);
});
})

不确定我是否完全理解您的目标...

关于javascript - 在 .each() 中调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5735863/

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