2013-12-14 68 views
2

我被困在我認爲是一件非常簡單的事情,基本上我有下面的代碼爲一個滑塊。Javascript和jQuery操作

$(".slider").slider({ 
    animate: true, 
    range: "min", 
    value: 0, 
    min: 0, 
    max: 255, 
    step: 1, 
    //this gets a live reading of the value and prints it on the page 
    slide: function(event, ui) { 
    $("#slider-result").html(ui.value); 
    }, 
    //this updates the hidden form field so we can submit the data using a form 
    change: function(event, ui) { 
    $('#112').attr('value', ui.value); 
    } 
}); 

所有的工作都很好,我希望能夠做的事情是使值0再次重置滑塊。我在物理表單元素中有一點設置,但我希望可視化滑塊不顯示任何內容。

回答

0

您可以專門設置滑塊

// This would reset the slider 

$(".slider").slider("value", 0); 
+0

啊謝謝!這就是答案!謝謝 – everythingdaniel

+0

很高興有幫助:) –

1

的值。如果這是jQuery UI的滑塊,然後看看這個:

http://api.jqueryui.com/slider/#option-value

// Get or set the value option, after initialization: 

// getter 
var value = $(".selector").slider("option", "value"); 

// setter 
$(".selector").slider("option", "value", 10);