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再次重置滑塊。我在物理表單元素中有一點設置,但我希望可視化滑塊不顯示任何內容。
啊謝謝!這就是答案!謝謝 – everythingdaniel
很高興有幫助:) –