2012-09-30 141 views
0

我有以下的jQuery UI的滑塊代碼工作:JQuery的UI滑塊+到最大位置

$('div#chatFriendsSliderPath').slider({ 
    orientation: 'vertical', 
    animate: 'fast', 
    change: handleSliderChange, 
    slide: handleSliderSlide, 
    range: 'min', 
    min: 0, 
    max: 100, 
    value: 100 
});​ 

我有在頂部和底部以及這些按鈕將滑塊移動到頂部/最大或最低/最低位置。下面的代碼。

// Chat Contacts - Scroll to Top 
$(document).on('click','img#chatContactsSliderBarTop', function() { 
    alert('top...'); 
}); 

// Chat Contacts - Scroll to Bottom 
$(document).on('click','img#chatContactsSliderBarBottom', function() { 
    alert('bottom...'); 
}); 

我需要什麼,到位報警代碼來獲取移動四肢滑塊?

注意:還有我沒有放在這裏的更改/幻燈片代碼。

回答

0

設置爲最大值:

$('div#chatFriendsSliderPath').slider("option", "value", 100); 

TO設爲min

$('div#chatFriendsSliderPath').slider("option", "value", 0); 
0

你應該使用一些這樣的事:

// Chat Contacts - Scroll to Top 
$(document).on('click','img#chatContactsSliderBarTop', function() { 
    $('div#chatFriendsSliderPath').slider("option", "min", 0); 
}); 

// Chat Contacts - Scroll to Bottom 
$(document).on('click','img#chatContactsSliderBarBottom', function() { 
    $('div#chatFriendsSliderPath').slider("option", "max", 100); 
}); 

希望這將幫助!