最佳答案
我已经在一个项目中设计并实现了 jQueryUI 滑块。虽然它的响应,滑块不响应被触摸和拖动。相反,你必须触摸你想要滑块去的地方。我希望避免切换到支持触摸和拖动的 jQuery 移动 UI,因为我们已经广泛使用了 jQuery (非移动) UI。
我们需要的功能:
给你
我们正在使用的: < a href = “ http://jqueryui.com/slider/# step”rel = “ norefrer”> 这里
On a desktop you can't tell the difference. On a mobile device it is apparent.
Anyone know how to add this support to jquery UI?
$("#videographers").slider({
value: 2,
min: 1,
max: 3,
step: 1,
slide: function(event, ui) {
return calcTotal(ui.value);
}
});