0

我有一个 jquery ui 滑块,我想在工具提示中显示滑块的值(在滑块的处理程序中)。到目前为止,当滑块停止时我得到了值,但我希望工具提示在拖动滑块时更新值。有没有办法让 jquery UI 滑块当前位置,而不是值?

4

2 回答 2

2

使用slide功能

$( "#slider" ).slider({
    slide: function(event,ui){
        $('#value').text(ui.value);    
    }
});

例子

http://jsfiddle.net/jcMu8/

于 2014-04-21T18:27:28.377 回答
0

write a jquery function that is triggered by the slider slide event that replaces the value of the tool tip.

slide: function(event, ui){ //replace value
}

于 2014-04-21T18:30:53.410 回答