jquery:抓取滚动器的mouseup(即使mouseup不在滚动条上)

时间:2013-12-11 12:26:20

标签: jquery events scrollbar jquery-1.9 mouseup

我正在使用http://refreshless.com/nouislider/

中的滚动条
$("#sample-minimal").noUiSlider({
     range: [0, 100]
    ,start: [20, 80]
    ,connect: true
});

一切都很好。

我希望在鼠标滚动后立即将滚动条移动到另一个位置时触发事件。

$("#sample-minimal").mouseup(function() {
//works fine, but it doesn't fire if the mouse was down on the scroller, pulled to another position OUT OF THE SCROLLER and then mouseup
//it works only if the mouse is above the scroller
});

所以我想要的实际上不是sample-minimal的mouseup事件,而是在sample-minimal的mousedown触发的两页事件中,鼠标在页面的任何部分都有。因此,它实际上具有与滚动条相同的行为。

如何制作?

谢谢。

0 个答案:

没有答案