【Element】el-select搜索时,使用正则对内容进行过滤替换,只能输入数组英文,禁止输入中文

开发过程中,碰到 只能输入英文跟数字的需求。 当下决定限制不能输入中文文字来”解决需求“

但是项目中使用的 是el-select,使用了 ref,@oninput 都有bug,所以决定使用原生js 搭配解决,以下便是相关代码。

<el-select
        v-model="value"
        filterable
        remote
        reserve-keyword
        placeholder="请输入"
        :remote-method="getData"
        id="associatedid"
      >
       			<el-option
                  v-for="item in [1,2,3]"
                  :key="item.value"
                  :label="item.label"
                  :value="item.value"
                >
    		</el-option>
</el-select>

methods

methods:{
		 dom () {
		      const input1 = document.querySelector('#associatedid')
		      input1.oninput = function () {
		        console.log('change', input1.value)
		        const reg = /^[\u4e00-\u9fa5]{0,30}$/
		        input1.value = input1.value.replace(reg, '')
		      }
}

mounted

	mounted(){
	this.dom()
}

当select组件放在弹窗中的话,就需要在弹窗 visible = true 的时候 结合
this.$nextTick使用
如:

this.Dialog = true
this.$nextTick(() => {
            this.dom()
 })
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值