检索数组选择框的索引和值

时间:2013-10-03 10:24:01

标签: jquery

<?php foreach ($fruits as $fruit) { ?>
    <select name="fruits[]">
        <option value="">Apple</option>
        <option value="">Banana</option>
        <option value="">Orange</option>
    </select>
    <input type="text" name="quantity" value="" />
<?php } ?>

<script>
    $("select[input='fruits[]']").change(function () {
         // how to get the fruits array index 
         // how to get the fruits array value
    });
</script>

如何知道水果数组选择框中选择的具体索引和值?提前致谢!

3 个答案:

答案 0 :(得分:1)

类似的东西:

$("select[name='fruits[]']").change(function () {
    var selectedIndex = this.selectedIndex,
        value =  this.value;
});

答案 1 :(得分:1)

首先,选择器应为select[name="fruits[]"]。然后,您可以在DOM元素上使用selectedIndex。试试这个:

$("select[name='fruits[]']").change(function () {
     console.log(this.selectedIndex);
});

或者对于纯jQuery方法,请使用option:selected

$("select[name='fruits[]']").change(function () {
     console.log($('option:selected', this).index());
});

答案 2 :(得分:0)

<select name="fruits[]" id="fruit" onchange="calc()">
    <option value="">Apple</option>
    <option value="">Banana</option>
    <option value="">Orange</option>
</select>
<input type="text" name="quantity" value="" />
<script>
function calc()
{
    alert($("#fruit").prop("selectedIndex"));

}
</script>

Demo