0

嘿朋友们。我从选择框(html)中获取最大值和最小值时遇到问题。我想使用 jquery 或 javascript 从选择框中获取 MAX AND MIN 值。

这是标记,简单的范围滑块。

$('#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>

感谢帮助。

4

2 回答 2

0

你的问题模棱两可。两种解读方式:

1.你想让javascript知道选择框的最小值和最大值。

您可以使用:

 var options = document.getElementById('yourselectbox').childNodes;
 var min = 999999999;
 var max = 0;
 for(var i = 0; i < options.length; i++) {
     if(options[i].value > max) max = options[i].value;
     if(options[i].value < min) min = options[i].value;
 }

2. 你希望服务器知道 javascripts 的最大值和最小值。

DOM 由服务器构建,即它构建 HTML。HTML 包括定义最小值和最大值的 javascript。当通过 POST 将数据发送回服务器时,只会发送 SET 值。通常,最小值和最大值对服务器无关紧要。如果要发送最小值和最大值,则必须创建包含这些值的隐藏输入字段。然而,你为什么要?您定义了最小值和最大值,不是吗?

- 编辑 -

var options = document.getElementById('yourselectbox').childNodes;
var min = 999999999;
var max = 0;
for(var i = 0; i < options.length; i++) {
    if(options[i].value > max) max = options[i].value;
    if(options[i].value < min) min = options[i].value;
}
$('#slider').slider({
        range: true,
        min: min,
        max: max,
        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 ]); 
    }
});
于 2012-07-13T10:17:37.030 回答
0

根据 $row["values"] 格式,您可以像这样获得最大值和最小值,首先将所有选项文本放入一个数组中,然后使用parseInt()作为 Int 传递,然后执行

OptionsArray.maximum = function(ArrayParameter){
 return Math.max.apply( Math, ArrayParameter);
};

OptionsArray.minimum = function(ArrayParameter){
 return Math.min.apply( Math, ArrayParameter);
};

console.log('Maximum is '+OptionsArray.maximum);
console.log('Minimum is '+OptionsArray.minimum);

希望它有所帮助

于 2012-07-13T10:56:45.077 回答