elementUI vue 输入框只能输入正整数 不能输入字母 e 以及 – 号 2023-12-02 10:12 | 3,305 | 0 | 全部,技术 79 字 | 1 分钟内 <el-input v-model="value" onKeypress="return(/[\d]/.test(String.fromCharCode(event.keyCode)))" type="number"></el-input> el-input只能输入数字以及数字范围问题 el-input只能输入数字 oninpu… el-inputElementVue2