誰かが select タグ内のオプションをクリックしたときにページを変更するにはどうすればよいですか?
<select>
<option><a href="/1" >1</a></option>
<option><a href="/2" >2</a></option>
<option><a href="/3" >3</a></option>
</select>
誰かが select タグ内のオプションをクリックしたときにページを変更するにはどうすればよいですか?
<select>
<option><a href="/1" >1</a></option>
<option><a href="/2" >2</a></option>
<option><a href="/3" >3</a></option>
</select>
ONCHANGE
次のようにjava-scriptのイベントを使用できます
<select name="forma" ONCHANGE="location = this.options[this.selectedIndex].value;">
<option value="Home.php">Home</option>
<option value="Contact.php">Contact</option>
</select>
あなたの場合
<select onchange="location = this.options[this.selectedIndex].value;">
<option value=="/1" >1</a></option>
<option value=="/2" >2</a></option>
<option value="/3" >3</a></option>
</select>
onchange
イベントを使用します。
<select onchange="window.location.href=this.options[this.selectedIndex].value">