为了账号安全,请及时绑定邮箱和手机立即绑定

在weex中,如何禁止input框输入空格

在weex中,如何禁止input框输入空格

MYYA 2019-01-04 15:59:38
<input class="searchInput"  :returnKeyType="'search'" @return="rSearch" v-model="goodsName" :placeholder="cateName" @blur="inputBlur" />如何禁止input输入空格
查看完整描述

1 回答

?
萧十郎

TA贡献1815条经验 获得超13个赞

已解决,谢谢

<input  @change="checkNo(goodsName)" class="searchInput" :returnKeyType="'search'" @return="rSearch" v-model="goodsName" :placeholder="cateName" @focus="getFocus" @blur="inputBlur" @input="getValue"  /> // 搜索去空格
            checkNo(e) {                let reg = /^\S+$/;                if (e) {                    if(new RegExp(reg).test(e) == false) {                        this.goodsName = this.goodsName.trim()
                    }
                }
            }


查看完整回答
反对 回复 2019-01-04
  • 1 回答
  • 0 关注
  • 577 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信