gpt4 book ai didi

jquery - css() jquery 之后的回调函数

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

我想在 css() jquery 之后调用一个函数。我想要这样的东西:

$("p").css({"color":"red"}).function({
$("div").hide();
});

最佳答案

您可以使用queue()函数:

$("p").css({"color":"red"}).queue(function() {
$("div").hide();
$(this).dequeue();
});

关于jquery - css() jquery 之后的回调函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29792893/

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