尝试处理除一个节点以外的所有节点上的“ mousewheel”事件
$('body').on({ 'mousewheel': function(e) { if (e.target.id == 'el') return; e.preventDefault(); e.stopPropagation(); }})
尝试处理除一个节点以外的所有节点上的“ mousewheel”事件
$('body').on({ 'mousewheel': function(e) { if (e.target.id == 'el') return; e.preventDefault(); e.stopPropagation(); }})