如何使用 Backbone.js 视图绑定到事件?
我是backbone.js 的新手,我将不再使用KnockoutJS。我无法让事件绑定工作。
给定像这样的 HTML:
<span id="xxxxxx">All</span>
MenuView = BB.View.extend({
events : {
'click #xxxxxx' : 'onNavClick'
},
onNavClick : function(e) {
console.log('onNavClick');
}
})
由于上述原因,当我单击跨度时,事件没有触发。有想法吗?
谢谢
I'm new to backbone.js, I'm moving away from KnockoutJS. I can't get event bindings to work.
Given HTML like so:
<span id="xxxxxx">All</span>
MenuView = BB.View.extend({
events : {
'click #xxxxxx' : 'onNavClick'
},
onNavClick : function(e) {
console.log('onNavClick');
}
})
For some reason with the above, when I click on the span, the event is not firing. Ideas?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
如果您使用 el 指定视图属于哪个父元素,则视图可以管理现有的 dom 元素。您还可以定义视图以使用 render 动态生成 html。查看 todos 示例应用,这是一个很好的起点。
Try this:
Views can manage existing dom elements if you specify which parent element it belongs to using el. You can also define views to generate html dynamically using render. Check out the todos example app, it's a good place to start.