我有以下看法:
App.HouseListElemView = Backbone.View.extend({
tagName: 'li',
events: {
'click': function() {
App.detailsRouter.navigate('details/' + this.model.id, true);
},
'click .btn-compare': 'compare',
'click .btn-compare > input': 'toggleCompare',
},
// more stuff here...
});
列表中的第一个点击事件在 safari 和 chrome 中都会触发,但在 Firefox 中不会触发。我正在使用 Firefox 11.0。
我是否错误地声明了我的事件?