无法在Backbone视图中绑定事件 - 使用模态时

时间:2014-11-28 06:48:32

标签: jquery backbone.js modal-dialog simplemodal

我有以下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]

0 个答案:

没有答案