Ember.js - 关于mousedown的文档未在.ember-view内触发

时间:2013-11-29 07:52:56

标签: jquery ember.js

使用ember.js,我想收听文件mousedown事件:

$(document).on('mousedown', function(){
    //...
});

事件未触发但不在emebr根元素内(实际上不是实体)。

什么可能导致这种行为?

提前致谢

1 个答案:

答案 0 :(得分:0)

http://emberjs.jsbin.com/eLavixe/1/edit

App.ApplicationView = Em.View.extend({
  didInsertElement: function(){
    //alternatively you can manually hook up in here
  },
  mouseDown: function(){
    alert('mouse down');
  }
});