jQuery slider “change” event: How do I determine who called it?

徘徊边缘 提交于 2019-11-28 07:36:44

问题


I got a slider that is used as a time-line in my music player. The min value is 0 and the max vlaue is the song length (in seconds). Each second (I do this with a timer), the slider moves and the value is set to the current time. This code line looks like that:

$("#sliderTime").slider("option", "value", document.sound.controls.currentPosition);

The user is able to slide/click the slider and jump to another point in the song, this is by firing the function 'play(startPlayFromHere)'. It looks like that:

$("#sliderTime").slider({
   ...
  change: function (event, ui) { play(ui.value) },
});

The problem is that both the code line in the timer and the user are calling the same 'change' event of the the slider, and the user can't move the slider.

So my question is how can I determine whether the user called the change event or not (that means it was the timer)?

I hope it's clear enough, Thanks!


回答1:


You can determine whether a change event arose manually or programmatically by testing event.originalEvent in the change handler.

$('#slider').slider({
    change: function(event, ui) {
        if (event.originalEvent) {
            //manual change
            play(ui.value);
        }
        else {
            //programmatic change
        }
    }
});

See fiddle.



来源:https://stackoverflow.com/questions/10255041/jquery-slider-change-event-how-do-i-determine-who-called-it

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!