2012-11-21 121 views
1

我使用jQuery的1.7.1.js和jquery.slider.js在鼠標鬆開事件

jQuery('#Slider1').slider({ from: 0, to: maxAmount, smooth: true, step: 100,round: 0, 
      onstatechange: function(value){ 
    .... 
    } 

當滑塊通過鼠標滑動這個函數被調用jQuery的滑塊。 我想要事件滑動釋放(如mouseup)相同的滑塊功能,而不是onstatechange。

請建議..

謝謝。

回答

2

使用回調鼠標鬆開事件

jQuery('#Slider1').slider({ from: 0, to: maxAmount, smooth: true, step: 100,round: 0, 
     callback: function(value){ 
.... 
} 
2

滑塊有stop事件來處理這個問題:

$('#slider').slider({ ..., stop: function(event, ui){ }, ... });