記事参照

No.1 2013/02/16 11:39
題:Re: 【オプションメニューでリンク GOボタン付き】
名:もも

イベントの入力するとこを下のようにすれば多分OKです。
window.open(this.form.sample.options[this.form.sample.selectedIndex].value)

下のような感じですね。
<form>
<select name="sample">
<option selected="">選択して下さい</option>
<option value="https://aimix.jp/index.html">トップページへ</option>
<option value="waza.html">小技集へ</option>
</select>
<input type="button" onclick="window.open(this.form.sample.options[this.form.sample.selectedIndex].value)" value="GO">
</form>



掲示板に戻る