したがって、次の JavaScript コードがあります。
<script type="text/javascript">
function clearRadioButtons()
{
document.getElementById("radiobutton1").checked="";
//etc for more radio buttons
}
</script>
そして、私のフォームには、次のコードがあります。
<select name="whatever" onclick="clearRadioButtons()">
<option onclick="clearRadioButtons()"></option>
//and so on and so forth for <option> tags with values
</select>
select
問題は、またはoption
要素をクリックしても関数が実際に呼び出されないことです。ブラウザーのデバッガーで JS 関数を呼び出すと、正常に動作しますが、イベントはトリガーされません。ここで何が間違っていますか?かなり単純な気がしますが、誰が知っていますか。
ティア。