嘿朋友。 我有一個從選擇框(HTML)獲取最大值和最小值的問題。 我想從jQuery或JavaScript的選擇框中獲取MAX和MIN值。從選擇框中獲取最大值,最小值Jquery
這是標記,簡單範圍滑塊。
$('#slider').slider({
range: true,
min: 0,//HERE I WANT TO GET VALUES
max: 40,
step: 10, // Use this determine the amount of each interval
values: [ 20, 40 ], // The default range
slide: function(event, ui) {
// for input text box
$("#amount").val(ui.values[ 0 ] + " - " + ui.values[ 1 ]);
// Display and selected the min Price
$("#my_min").val(ui.values[ 0 ]);
// Display and selected the max Price
$("#my_max").val(ui.values[ 1 ]);
}
});
我想從選擇框中獲取它們,選擇框將被PHP動態填充。 這裏是代碼:
<select id="my_min" class="price_range">
<?php //dynamicly filled options
while($row=mysql_fetch_array($query))
{echo "<option>".$row['values']."</option>";}
?>
</select>
感謝您的幫助。
你可以張貼 「選項」 標籤標記? – Gntem 2012-07-13 10:20:36
我添加了選項標籤 – 2012-07-13 10:30:05