<?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>
如何知道水果数组选择框中选择的具体索引和值?提前致谢!
答案 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>