我有以下div,其中包含模态列表
<div id="listofModals>
<div id="fooModal>
<div class="actions">
<a href="#" class="next"></a>
</div>
</div>
</div>
当我在fooModal上创建一个视图时 - 它无法绑定内部按钮上的任何事件。
$el="#listofModals"
events: {'click .next': 'callSomefunction'},
这里有什么问题?
以下是查看声明:
return xxxxx.View.extend({
__name__: 'myView',
events: {'click .next': 'next'},
template: Handlebars.compile(MyTemplate),
initialize: function (options) {
}
next:function(){
console.log('Here);
}
});
当我打印时。$ el -without初始化
[div#listOfModals, context: document,
selector: "#listOfModals",
jquery: "1.9.1",
constructor: function,
init: function…]0:
div#listOfModalscontext: documentlength: 1selector: "#listOfModals"__proto__: jQuery[0]