<?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>
フルーツ配列セレクトボックスで選択された特定のインデックスと値を知る方法は?
前もって感謝します!