したがって、2つのselectタグがあり、2番目のselectタグのonChangeイベント中にあります。2つのselectタグの値を渡したい
<td>District:
<div>
<select name="district" id="district" onchange="getZone(this.value)">
<option value="ALL">ALL</option>
<?php
include_once 'newcompute.php';
$computation = new newcompute();
echo $computation->getDistrict();
?>
</select>
</div>
</td>
<td>Barangay:
<div id="barangay" name="barangay">
<select onchange="loadReport(barangay.value,district.value)">
<option>Select a Barangay</option>
<option value="ALL">ALL</option>
</select>
</div>
</td>
</tr>
そこで、onchange = "loadReport(barangay.value、district.value)"を実行しようとしましたが、district.valueの未定義の値しか取得できません。
loadReportにselectタグ地区の現在選択されている値を渡すにはどうすればよいですか?