如何使 jQuery 滑块仅在拖动处理程序时滑动?
我正在尝试使用多个处理程序幻灯片(如 jQuery 示例),但我希望能够在处理程序之间拖动部分。
jQuery 示例: http://jqueryui.com/demos/slider/range.html
I'm trying to use a multiple handlers slide like jQuery example, but I what to be able to drag the part between the handlers.
jQuery example:
http://jqueryui.com/demos/slider/range.html
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 原型,由 davidpadbury。
如果您想手动执行此操作,请将自定义处理程序注册到 slide 事件 并通过如下方式访问处理程序来设置它们的值:
检查 范围滑块示例的源代码,这可以类似于该示例中美元值的设置来实现。但是,只有当您想要永久固定范围(即失去处理程序调整范围的能力)时,这才容易起作用。如果您想保留该功能,请检查 David Padbury 的实现。
This has been prototyped by davidpadbury.
If you want to do it manually, register a custom handler to the slide event and set the value of the handlers by accessing them like this:
Check the source of the range slider example, this can be implemented similar to the setting of the dollar values in that example. However, this will only work easily if you want to have a permanently fixed range (i.e. losing the ability to adjust the range by the handlers). If you want to preserve that feature, check the implementation by David Padbury.