Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面上有一个 jQuery 滑块,最小值为 -100,最大值为 100,startValue 为 0。我想提供一个重置按钮,它将滑块值重置为 0。
我找不到任何 setter 函数来做到这一点,我该怎么做?
如我所见,您可以获取或设置滑块的值:
$("#slider).slider('value', 0);
http://docs.jquery.com/UI/Slider/slider#.22value.22value
这会奏效吗?
$("#slider").slider("value",0);