Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Backbone JS 中,策略首先将所有内容呈现在一个分离的元素中。然后在准备好将其附加到 DOM 时。
我想绑定到该元素最终附加到 DOM 的时间(然后运行一些函数,比如触发一些点击事件或诸如此类的东西。
只需创建其他 Backbone 对象可以订阅的您自己的自定义事件。当您向 DOM 添加视图时触发这些。
this.trigger('addedToDOM', this);
...
viewtoBeAdded.bind('addedToDOM', this.onAddedToDom);
onAddedToDom: function(viewThatWasAdded) { .. }