我如何在一个固定高度没有滚动条的div中检测滚动条?以下内容将不起作用:HTML:
<div class="wrapper"> </div>
CSS:
.wrapper { height: 600px; }
JS:
$('.wrapper').scroll(function() { //... });
vvppvyoh1#
可以使用onwheel事件:
onwheel
$('.wrapper').on('wheel', function() { console.log("Scrolled!") })
.wrapper { height: 680px; width: 150px; background: green; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <div class="wrapper"> </div>
1条答案
按热度按时间vvppvyoh1#
可以使用
onwheel
事件: