试图让一个事件在视图中触发,但它似乎没有触发。此视图在另一个视图中运行,因此不确定是否未正确设置事件。
var ListRow = Backbone.View.extend(
{
events:
{
'click .button.delete': 'destroy'
},
initialize: function()
{
_.bindAll(this, 'render', 'remove');
},
render: function()
{
this.el = _.template($('#tpl-sTableList_' + key + 'Row').html());
return this;
},
destroy: function()
{
console.log('remove')
}
});