我希望能够检查一个事件在调用函数时是否正在发生。 当使用. 拖动 () 向上或向下拖动我的自定义滚动条时, 我有一个函数被调用, 当容器滚动时, 我也有函数被调用。 问题在于两者同时运行, 使它发生错误 。
所以,我的问题是,我该如何做一个“如果”的语句, 检查卷轴条是否被拖动, 这样我才能阻止它执行函数代码的其余部分?
我不是在问一个元素是否“附着”于它,而是问该元素是否是在某个时刻触发的。
我能做到吗 或者我需要换个方法吗
我的代码是这样的:
$( .container ).scroll(function(){
//get the heights of the container and it s contents and the difference
//get the height of the scroll bar and it s container and the difference
//declare the top property of scroll bar from this info
});
function scrolly() {
//get the heights of the elements described above
//declare the scrollTop of the container
}
$( .bar ).draggable({
axis: y ,
containment: parent ,
drag: function() {
scrolly();
}
});