LoginSignup
3
2

More than 3 years have passed since last update.

HTMLでスマホキーボードの改行ボタンを検索ボタンに変更する方法

Last updated at Posted at 2019-07-24

やりたいこと

<input>tagを使用して検索バーを作ると、focusしたときのスマホキーボードのEnter Keyは「改行」と表示される。

検索バーの場合Enter Keyを押したときの挙動は「改行」ではなく「検索」させたいため、Enter Keyの表示も「検索」に変更したい。

変更する方法

  • <input><form>の中に入れる
  • <form>actionattributeを追加(submitの挙動をここで定義したくない場合はaction="#"とすればOK)
  • <input>type="search"を追加
<form action="#" @submit="search">
   <input type="search" />
</form>

これでEnter Keyが「検索」になる。

3
2
0

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
3
2