我正在使用来自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
});
所以我实际上想要的不是 mouseup 事件sample-minimal
,而是当 mousedown 被触发时页面任何部分的 mouseup sample-minimal
(两个事件一起)。结果,它实际上具有与滚动条相同的行为。
怎么做?
谢谢你。