抱歉我的英文。
在可拖动元素上滚动鼠标滚轮以进行操作时需要什么?
如果向上,则元素向上移动,反之亦然
HTML
<div id='container'>
<div class='move'><div>
</div>
样式
<style>
#container{height:200px;width: 200px}
.move{height:10px;width:10px}
</style>
JS
$('.move').draggable({
axis: 'y',
containment: 'parent'
})
$('#container').bind('mousewheel', function(event, delta) {
//call drag function
});