1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

javascriptを一行使用するだけで、プルダウンメニューで選択した瞬間に画面遷移

Last updated at Posted at 2019-08-11

プルダウンメニューから選択した瞬間に画面を移動する機能の実装に躓いたのでメモします。
以下のソースをhtmlファイルに記述します。

<select onChange="location.href=value;">
    <option class="selected">並び替え</option>
    <option value="URL1">新しい順</option>
    <option value="URL2">参考になった順</option>
</select>

以下の写真のようにブラウザに表示されます。
515f9a9a4eed683fbe048261b938a309.png

これで、新しい順を選択するとURL1、参考になった順を押すとURL2に遷移するようになります。 onChange="location.href=value;"の一文をselectタグに追加するだけで機能するので便利だと感じました。

1
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?