码迷,mamicode.com
首页 > 其他好文 > 详细

鼠标滚动事件兼容性 wheel、onwheel

时间:2015-08-29 18:28:54      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:

wheelEvent = "onwheel" in document.createElement("div") ? "wheel" : // Modern browsers support "wheel"

document.onmousewheel !== undefined ? "mousewheel" : // Webkit and IE support at least "mousewheel"

"DOMMouseScroll"; //滚动事件的兼容

$scrollbar.addEventListener(wheelEvent,function(){ $("#tl_listgroup").css("top","0px"); },false)

鼠标滚动事件兼容性 wheel、onwheel

标签:

原文地址:http://www.cnblogs.com/garfieldzhong/p/4769496.html

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