这在 Backbone 中是否正常,在视图上的 .remove() 之后我仍然能够通过 console.log 访问事件对象?
var View = Backbone.View.extend({
initialize : function () {
console.log("hey");
},
events: {
"click ul#products li a": "item"
}
});
var vi = new View;
vi.off();
vi.remove();
vi.undelegateEvents();
console.log(vi);