码迷,mamicode.com
首页 > Web开发 > 详细

Backbone.js 的 View 中定义事件

时间:2015-02-11 18:24:43      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

 

使用 Backbone 的 View 时,可以象传统 jQuery 那样定义事件,$("selector").click(function(){...})。幸运的是 Backbone 让我们在 View 中定义事件变得更为简单和集中,只要设置 View 的 events 属性,配置 事件,元素以及相应的处理方法,基本模式如下:

events: {
        "click button": "event_handler",
        "focus #name": "event_handler"
    },
    event_handler: function( event ){
        alert(event.target.id);
    }

 

Backbone.js 的 View 中定义事件

标签:

原文地址:http://www.cnblogs.com/leejersey/p/4286475.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!