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 の例。