該值只會在刷新頁面時更新,但我的想法是在移動指針時更新值。
我使用this plugin,但我認爲這是基於jQuery UI滑塊。
在我的代碼有:當指針移動
<script type="text/javascript">
$(function(){
$("#SliderSingle").slider({
from: 400,
to: 2000,
step: 2.5,
round: 1,
scale: ['400€', '600€', '800€', '1000€', '1200€', '1400€',
'1600€', '1800€', '2000€'],
dimension: ' €',
skin: "round",
slide: function(event, ui){
$("#amount").val('$' + ui.value);
}
});
$("#amount").val('$' + $("#SliderSingle").slider("value"));
});
</script>
唯一的問題只是更新值。
http://jqueryui.com/demos/slider/#events檢查出的變化事件 – tester 2011-04-13 01:13:39