我想使用JavaScript控制jquery UI滑块。我想在触发事件时将滑块移动到某个位置。
$('select#dn_event_date, select#up_event_date').selectToUISlider(
{
// labels and tooltipSrc are selectToUISlider specific options
labels: 0
sliderOptions: {
// swapped out stop for change here
change: function(){
// Here i want to control to move slider to certain position
}
}
}
);
我该怎么做?
答案 0 :(得分:0)
您只需要使用value()
功能
例如假设您有按钮,当用户点击它时,您需要从一开始就将滑块移动约60%:
$('#btnRun').click(function(){
$(".selector").slider("value",60);
});
检查this以获取更多信息。