动态更改 jquery-tools 范围输入的最小/最大值
我正在使用 jquery 工具包中的新 rangeInput 作为滑块。它可以工作,但我的问题是我需要根据用户偏好将其更改为英制或公制单位,这是在加载 DOM 之后。
因此,我需要能够根据用户选择的测量系统将最大值设置为 5000 或 465。我已经成功更改了 dom 中的值,但它似乎并没有影响滑块值。
I'm using the new rangeInput in the jquery tools package for a slider. It's working, but my problem is I need to change it to english or metric units based on user preference and this is after the DOM has been loaded.
So I need to be able to set the max to 5000 or 465 based on what measurement system the user chooses. I've changed the values in the dom successfully, but it doesn't seem to affect the slider values.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改最大/最小值不会影响滑块的值。您还需要将滑块的值转换为您使用的单位系统。
Changing the max/min values doesn't affect the value of the slider. You also need the convert the value of the slider to the unit system you use.