在Vue项目中做登陆页面有个准考证号登陆,里面要求只能输入纯数字,不能有英文字母出现,因为输入框用的是el-input。
在elementUi中的el-input的type值不像普通输入框设置为number就行,el-input的type设置为number会在输入时末尾出现在增加减少的效果
      <el-input
        type="text"
        oninput="value=value.replace(/[^\d]/g,'')"
        v-model="input"
        placeholder="请输入准考证号"
        clearable
      ></el-input>
这就是纯数字输入框

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-23
  • 2021-11-28
  • 2021-10-20
相关资源
相似解决方案