我用这个:
$('#theSlider').slider('value', newValue);
但是我如何传递其他参数?我试过了:
$('#theSlider').slider('value', newValue, somethingElse);
和
$('#theSlider').slider('value', [newValue, somethingElse]);
但都没有奏效。是否可以传递其他参数?
答案 0 :(得分:0)
在params
中传递多个.slider()
,在values
传递array
。
$('#theSlider').slider({
orientation: "horizontal",
range: "min",
max: 255,
values: [75, 100]
});