解决Uniapp 小程序 input框添加正则 限制只能输入数字、汉字、字母等
解决Uniapp 小程序 input 框添加正则 只能数字、汉字、字母限制等
·
<u--input v-model="value" type="number " placeholder="请输入数字" @input="TypeInput($event)"></u--input>
方法
TypeInput(e, val) {
// 只能输入数字的验证;
const inputType = /[^\d]/g //想限制什么类型在这里换换正则就可以了
this.$nextTick(function() {
this.value = e.replace(inputRule, '');
})
},
正则
只能输入数字
const inputType = /[^\d]/g
只能输入字母
const inputType = /[^a-zA-Z]/g
只能输入数字和字母
const inputType =/[\W]/g
只能输入小写字母
const inputType =/[^a-z]/g
只能输入大写字母
const inputType =/[^A-Z]/g
只能输入数字和字母和下划线
const inputType =/[^\w_]/g //下划线也可以改成%
只能输入中文
const inputType =/[^\u4E00-\u9FA5]/g
只能输入数字和小数点
const inputType =/[^\d.]/g
更多推荐
已为社区贡献1条内容
所有评论(0)