我正在研究 jquery 滑块,需要对此进行一些自定义。
我需要让它表现得像只有推子移动滑块。如果我不移动推子,它不应该移动。甚至更改事件都不会改变滑块的移动
$( "#master_volume" ).slider({
value: 25.0,
orientation: "horizontal",
range: "max",
//animate: true,
min: 0,
max: 100,
step: 0.1,
handle: '#myhandle',
slide: function(event, ui) {
$("#volume").text($("#master_volume").slider("value"));
},
change: function(event) {
if (event.originalEvent) {
}
}
});