手机号校验:输入11位数字,禁止输入其它字符

使用type="number"  

onKeypress="return (/[\d]/.test(String.fromCharCode(event.keyCode)))"
oninput="if(value.length>11)value=value.slice(0,11)"
会有bug:拼音输入法还是可以输入E e字母;
解决方案:
             <el-input
                  v-model="titleForm.phoneNumber"
                  placeholder="请输入手机号"
                  type="text"
                  onkeyup="this.value=this.value.replace(/\D/g,‘‘)"
                  clearable
                  maxlength="11"
                >
             </el-input>        

 

手机号校验:输入11位数字,禁止输入其它字符

上一篇:【Azure 应用服务】Azure Function App使用SendGrid发送邮件遇见异常消息The operation was canceled,分析源码渐入最源端


下一篇:云原生爱好者周刊:长得最像苹果的 Linux 桌面