HTML ドロップダウン メニューをチェックボックスのあるテーブルにリンクしようとしています。
この JavaScript 関数は、「アーク」値が選択されているかどうかを確認しようとしてから、スペクトルを表示するチェックボックス 3 を無効にします。
function showShields()
{
if (document.getElementById("Shield").value == ("arc")
{
document.getElementById("checkBox3").disabled=true;
}
}
これは HTML コードです。
<!DOCTYPE html>
<html>
<head>
<script src="SpiritShield.js"></script>
</head>
<body>
<p>What kind of shield are you interested in?</p>
<select id="Shield">
<option value="arc">ARC</option>
<option value="divine">GAS</option>
<option value="spectral">MIG</option>
<option value="elysian">ANY</option>
</select>
</body>
<table border="2" cellspacing="0">
<tr>
<th>Checkbox</th>
<th>Shield</th>
</tr>
<tr>
<td><input type="checkbox" id="checkBox1"</td>
<td>ARC1</td>
</tr>
<tr>
<td><input type="checkbox" id="checkBox2"</td>
<td>ARC2</td>
</tr>
<tr>
<td><input type="checkbox" id="checkBox3"</td>
<td>SPECTRAL1</td>
</tr>
<tr>
<td><input type="checkbox" id="checkBox4"</td>
<td>SPECTRAL2</td>
</tr>
</table>
</html>
誰かがこれを解決するのを手伝ってくれますか?
ありがとうございました