使用ember.js,我想收听文件mousedown事件:
$(document).on('mousedown', function(){
//...
});
事件未触发但不在emebr根元素内(实际上不是实体)。
什么可能导致这种行为?
提前致谢
答案 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');
}
});