我想使用 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
}
}
}
);
我怎样才能做到这一点?