我正在使用Filament Group 的 jQuery Select Slider来生成用于选择特定值范围的表单。
如何获取滑块和更新<input>
字段的值?
$(function(){
$('select').selectToUISlider({
labels: 7
});
//fix color
fixToolTipColor();
});
我知道我可以通过更改功能通过 jQuery UI Slider 获取值。我该怎么做?
我正在使用Filament Group 的 jQuery Select Slider来生成用于选择特定值范围的表单。
如何获取滑块和更新<input>
字段的值?
$(function(){
$('select').selectToUISlider({
labels: 7
});
//fix color
fixToolTipColor();
});
我知道我可以通过更改功能通过 jQuery UI Slider 获取值。我该怎么做?
The plugin already updates the 'select' element for which you have created UI Slider.
If you want to update another 'input' element, why not hook up the change event for your select and use it to update your input field.
$(function(){
$('select')
.selectToUISlider({ labels: 7 })
.change(
function()
{
$('#myInputField').val(this.val());
}
);
//fix color
fixToolTipColor();
});