我正在尝试将事件绑定到全局对象。使用以下代码,我在 jquery js 文件中收到错误
未捕获的类型错误:无法读取未定义的属性“类型”
// bind input events
$(window.APP).bind('keyDown', function() {
console.log('test')
});
keyDown: function(keycode) {
$(window.APP).trigger()('keyDown', keycode);
},
使用 jQuery JavaScript 库 v1.4.2
我在这里做错了什么?