我有一个主干应用程序可以将公告呈现到 dom 中,但是,我希望公告在几秒钟后消失。我猜想,在显示公告之后,我应该只调用一个删除它的函数,但是有没有办法延迟它的执行,或者在我显示模板后创建一个回调。对不起,如果这是一个简单的问题。
$(this.el).html(this.template({ announcement: announcement}));
this.removeAnnouncement();
},
removeAnnounce: function(){
this.$el.remove();
},