答案 0 :(得分:1)
这样的事可能会对你有所帮助
https://github.com/freqdec/fd-slider
https://github.com/fryn/html5slider
这些是<input type="range" />
的vanilla JS实现,可以设置为滑块
答案 1 :(得分:0)
使用jQuery UI,您只需为每个区域设置step
递增,让我们举个例子:
$( "#slider" ).slider({
min: 0,
max: 3,
step: 1 // so we'll move from 0 - 1 - 2 - 3 (4 locations)
});
执行此逻辑,您将能够移动到4个不同的位置。在这种情况下,每次增量为1。