目的:掉起来右下角为搜索的按钮

步骤:

1、 input的type改为search,再写keydown按下时的事件调取搜索事件的方法

这样安卓手机上回车就变成了“搜索”,不过ios仍然是换行

 

2、input 外面套form,必须要有action,action=“javascript:return true”

我的项目用van:想弹出数字键盘,并监听搜索(换行),在安卓上执行搜索按钮,在ios 执行blur,因为安卓上点完成不执行blur

<form @submit.prevent="formSubmit" action="javascript:return true">
        <van-field
          v-model='deviceCode'
          type='tel'
          placeholder="输入设备唯一码"
          clearable
          @blur="blur"
          @keydown="search($event)"
        />
</form>
formSubmit () {
  return false
}

 

Logo

前往低代码交流专区

更多推荐