移动页面input手机键盘中按键展示“搜索”

在开发搜索输入框的时候,使用了arco 的searchbar 组件,安卓中展示正常,软键盘可以显示“搜索”按钮,但 ios 上显示的却是“换行”

查了下资料,iOS 上这样写可以展示搜索:

<form action="." > //套在form 里展示搜索
  <input id="iptSearch" type='search' />
  <input type="text" style="display:none;"/>  // 增加一个隐藏未填写 input 阻止点击搜索后刷新页面
</form>

移动页面input手机键盘中的“搜索”按键

Leave a Comment

邮箱地址不会被公开。 必填项已用*标注