我有这样的视图:
(function(views) {
views.FilterView = Backbone.View.extend({
tagName: 'div',
events: {
'click a.remove': 'remove'
},
template: _.template($("#filterViewTemplate").html()),
render: function() {
this.$el.html(this.template());
return this;
},
remove: function (e) {
this.remove();
this.unbind();
}
});
})(app.views);
它的模板是:
<script type="text/html" id="filterViewTemplate">
<select class="filterByOption">
<option value="Account">Account</option>
<option value="Owner">Owner</option>
</select>
<span class="cell sort">
<input class="filterString cell" type="text" />
</span>
<a href="#" class="btn small remove">Remove</a>
</script>
但是当我点击Remove
我得到以下错误:
Uncaught RangeError: Maximum call stack size exceeded