私はJavaScriptの初心者で、ユーザーがフォームでオプションを選択したときに単一の入力値を変更してから、同じページに送信したいと考えています。
HTMLコードは次のとおりです。
<form id="form" action="thispage.jsp" method="post">
<input id="action_type" type="hidden" name="action_type" value="firstAction" />
<table class="choose">
<tr>
<td>Choose your test</td>
<td><select id="select_test" name="test_name">
<option value="test0"></option>
<option value="test1"></option>
</select></td>
</tr>
</table>
そしてJavaScript関数:
form = document.getElementById("form");
action = document.getElementById("action_type");
select = document.getElementById("select_test");
select.onchange = function() {
action.setAttribute("value", "otherAction");
form.submit();
}
そして、これは例外を返します。このコードの何が問題なのですか?