将多个函数绑定到主干中的同一事件
是否可以将添加事件多次绑定到集合。我想在事件触发时调用多个函数。 (我在多个视图中有相同的集合,因此当我添加元素时,我希望触发所有视图的 addview 函数。现在只有最后一个有界的函数触发)
Is it possible to bind an add event to a collection multiple times. I would like to have multiple functions called when the event fires. ( I have the same collection in several views, so when I add the element I would like addview function of all the views to fire. Right now only the last bounded one fires)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,一个事件可以有多个绑定。
如果您有:
当 add 事件触发时,add 和 add2 都会运行。
yes, It is possible to have multiple bindings to one event.
if you had:
both add and add2 would run when the add event fired.