全部 / 前端 / 技术 · 2022年10月29日 0

H5 输入框唤起键盘显示搜索按钮

设置 input[type=search]

安卓

<input class="input" type="search">

iOS

iOS 必须放到 form 中且加 action 不为空才能显示搜索按钮:

<form class="form" @submit.prevent action="#">
  <input class="input" type="search">
</form>