jQuery UI 滑块值不正确
我正在创建一个网页,允许用户使用 jQuery UI 滑块选择一个值。但是,我想在用户滚动时更新这些值,因此我将 update_value 函数附加到滑块 slide 事件。
问题是,当滑块手柄到达边缘时,我得到的值不正确。例如,当它应该为 0 时,我得到的值为 500;当它应该为 max 时,我得到的值为 99000。 (100000)。
我尝试使用 change 事件进行测试,它为我提供了所需的确切值。但是,当我尝试使用 slide 事件时,问题仍然存在。
有什么想法吗?
I'm creating a web page that allows users to select a value using the jQuery UI Slider. However, I would like to update the values as the user is scrolling, so I attached a update_value function to the sliders slide event.
The issue is that when the slider handle gets to the edges, the value I get is incorrect. For example, I get a value of 500 when it should be 0, and 99000 when it should be max. (100000).
I tried testing with the change event, and it gives me the exact value required. However, the problem is still there when I try using the slide event.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决了!问题是使用:
$('slider').value()
由于某种原因没有给出确切的值。但是,通过将 update_value 函数修改为:
function update_value(event, ui)
并使用 ui.value 解决了问题。
Solved it! The problem is that using:
$('slider').value()
Doesn't give the exact value for some reason. However, by modifying the update_value function to:
function update_value(event, ui)
and using ui.value solved the problem.