为了账号安全,请及时绑定邮箱和手机立即绑定

在jQuery中获取鼠标轮事件吗?

在jQuery中获取鼠标轮事件吗?

在jQuery中获取鼠标轮事件吗?有什么方法可以让鼠标轮事件发生(不是说scroll事件)在jQuery中?
查看完整描述

3 回答

?
芜湖不芜

TA贡献1796条经验 获得超7个赞

$(document).ready(function(){
    $('#foo').bind('mousewheel', function(e){
        if(e.originalEvent.wheelDelta /120 > 0) {
            console.log('scrolling up !');
        }
        else{
            console.log('scrolling down !');
        }
    });});


查看完整回答
反对 回复 2019-07-10
  • 3 回答
  • 0 关注
  • 485 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信