vue限制input输入数字和长度

vue限制input输入数字和长度

 <el-input v-model="gasLevelForm.multiple" type="text" maxlength="3" "this.value=this.value.replace(/\D/g,'')" style="width:200px;"/>

“this.value=this.value.replace(/\D/g,’’)” 正则表达限制只能输入数字

maxlength=“3” 限制输入最大长度

猜你喜欢

转载自blog.csdn.net/weixin_43254676/article/details/88886701