jquery UI 滑块最小/最大值
我可以为 jquery ui 滑块以及滚动显示数字时输入文本最小/最大值吗? 这里是一个示例,最大值的左侧滑块具有“无限制”,当您滚动它时,出现数字。
Can I put text min/max values for jquery ui slider and when scroll to appear digits? Here is an example, the left slider for max value has "no limit" and when you scroll it, appear digits.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先销毁滑块,这将完全删除滑块功能。这将使元素返回到其初始化前的状态。
之后,您可以向滑块添加新值,如下所示:
});
这有效。
Destroy the slider first, which removes the slider functionality completely. This will return the element back to its pre-init state.
After that you can add new values to the slider as,
});
This works.
是的,我们可以设置最小值-最大值
Yes we can set min-max
您正在寻找范围滑块。我希望范围滑块演示有所帮助。初始化滑块时可以设置最小值和最大值。
已编辑
抱歉误解了这个问题。如果您查看 demo 的源代码,您将看到一个更改值的小脚本更改滑块值时元素“#amount”的数量
以下是该脚本:
您可以更改此脚本以显示字符值。
您可以根据您的要求修改此脚本
注意:我没有对此进行测试。
You are looking for the range slider. I hope the range slider demo helps. The min and max values can be set while initialising the slider.
Edited
Sorry for misunderstanding the question. If you look at the source code of the demo you will see a small script that changes the values of element '#amount' when slider values are changed
Here is that script:
You can change this to display character values.
You can modify this script according to your requirements
Note: I have not tested this.