で選択した値を取得する方法をはこのjQueryのスライダーここ
<script>
$(".slider").slider({
animate: true,
range: "min",
value: 0,
min: 0,
max: 4,
step: 1,
//this gets a live reading of the value and prints it on the page
slide: function(event, ui) {
if(ui.value ==0)
$("#slider-result").html("Poor");
else if(ui.value == 1)
$("#slider-result").html("Average");
else if(ui.value == 2)
$("#slider-result").html("Good");
else if(ui.value == 3)
$("#slider-result").html(" Very Good");
else if(ui.value == 4)
$("#slider-result").html("Excellent");
},
//this updates the hidden form field so we can submit the data using a form
change: function(event, ui) {
$('#hidden').attr('value', ui.value);
}
});
</script>
このスライダはjqueryのスライダーを作成し、「優れたverygood良い貧しい」というように表示するコードです。選択時に。今私はそれを行う方法を選択したスライダの値を取得する必要が????