gpt4 book ai didi

javascript - 如何在 MeteorJS 中淡出删除元素

转载 作者:行者123 更新时间:2023-11-29 15:43:35 25 4
gpt4 key购买 nike

看看:http://shopping-list.meteor.com .我想在项目被删除时淡出它们,而不是让它们立即消失,但我不确定如何实现它。

密码在http://github.com/chintanparikh/shopping-list .

如果有人能让我走上正确的道路,那就太棒了。

干杯!

最佳答案

您是否尝试过使用 callback :

Template.item.events({
'click .close': function()
{
var self = this;
$(self).fadeOut('slow', function() { Items.remove(self); });

}
})

更新:按照 Rahul 的建议添加了“self”。

关于javascript - 如何在 MeteorJS 中淡出删除元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15280544/

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