jQuery UI 滑块值不正确

发布于 2024-11-16 04:45:25 字数 339 浏览 2 评论 0原文

我正在创建一个网页,允许用户使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悟红尘 2024-11-23 04:45:25

解决了!问题是使用:

$('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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文