// Removes just the `onChange` callback.
object.off("change", onChange);
// Removes all "change" callbacks.
object.off("change");
// Removes the `onChange` callback for all events.
object.off(null, onChange);
// Removes all callbacks for `context` for all events.
object.off(null, null, context);
// Removes all callbacks on `object`.
object.off();
1条答案
按热度按时间brqmpdu11#
off
可以正常工作,下面的Router
可以证明这一点:导航到
#/off
以外的任何位置时,将显示:然后,导航到
#/off
将显示:然后,
all test
永远不会出现。Backbone 网的事件
.off
函数