Re: 【オプションメニューでリンク GOボタン付き】
( No.1 ) |
- 日時: 2013/02/16 11:39
- 名前: もも
- イベントの入力するとこを下のようにすれば多分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>
|
|