Firfox中event is not defined问题?

可以运行:
window.addEventListener("DOMMouseScroll",function(event){
vare=window.event||event||e;
vara=e.detail;
console.log(a);
});
不可以运行:
$(window).on("DOMMouseScroll",function(){
vare=window.event||event||e;
vara=e.detail;
console.log(a);
});
第一个用的就是源生js,下边用的就是jquery,为什么下边就会提示eventisnotdefined呢??
烙印99
浏览 563回答 2
2回答

月关宝盒

首先同意雨夹雪说的,DOMMouseScrollJQ不支持的。其次是$(window).on("DOMMouseScroll",function(){vare=window.event||event||e;vara=e.detail;console.log(a);});这个event这个变量既不是形参,又不在上下文里,请问它不是notdefine是啥?你原生的实现把event形参删了照样报错。

慕容森

jquery对事件做了兼容处理,DOMMouseScroll只有firefox支持,jquery不支持$(window).on("scroll",function(e){console.log(e);});这里是所有事件
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript