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 UI 句柄在加载页面时正确显示数字 14,但如果我第二次设置它,它会将滑块句柄一直移动到最后。这是示例:
http://jsfiddle.net/rRrgV/
我肯定做了一些愚蠢的事情,对吧?
改变:
var v = input.val();
到:
var v = parseInt(input.val(),10);
您的v变量是一个字符串,因此您需要将其转换为整数。
v
jsFiddle 示例。