ドロップダウン リストからオプションを選択するときにフォームを送信しようとしています。しかし、それは機能していません。誰でもこの問題を解決するのを手伝ってくれませんか。以下に私のコードを添付しました。
前もって感謝します、
<div class="main" id="main">
<h2>Sell / Rent Advertisments</h2>
<form id="form1" name="form1" method="post" action="form.php">
<table width="531" height="121" border="0">
<tr>
<td width="81"><div>
<label>I wish to:</label>
</div></td>
<td width="76">
<label for="mediaId"></label>
<select name="mediaId" id="mediaId">
<option selected value="Sale">Sale</option>
<option value="Rent">Rent</option>
</select>
</td>
<td width="360"><label for="type"></label>
<select name="type" id="type">
<option value="_Any" selected="selected">- - Not Specified - -</option>
<option value="1" onChange="document.forms['form1'].submit()">Apartment</option>
<option value="3" onChange="document.forms['form1'].submit()">Building</option>
<option value="4" onChange="document.forms['form1'].submit()">Hotels/Guest Houses</option>
<option value="5" onChange="document.forms['form1'].submit()">House</option>
<option value="6" onChange="document.forms['form1'].submit()">Land</option>
</select></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</form>
</div>