利用input方法限制输入框只能输入限制范围内的数字

1
2
3
4
5
6
7
8
9
10
11
12
<!-- 只能输入数字 -->
<el-input
v-model="abc"
@input="abc=abc.replace(/\D/g,'')"
></el-input>

<!-- 只能 0~100.00之间的 两位小数 -->
<el-input
v-model="minProportionValue"
@input="minProportionValue = formatTwoDecimal(minProportionValue, 100)"
>
</el-input>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
* 不超过某个值的正数,小数位数最多两位
* @value
* @maxNumber 最大值
* @isIncludeMax true不能输入maxNumber false 能输入
*/
formatTwoDecimal(value, maxNumber, isIncludeMax) {
value = value.replace(/[^\d.]/g, ''); // 只能数字和小数点
value = value.replace(/^\./g, ''); // 不能开头是.
value = value.replace(/\.{2,}/g, "."); // 只能一个小数点
// 为了处理可能出现多个小数点的情况,先将第一个小数点替换为临时字符串$#$,然后去除所有的小数点,再将临时字符串替换回小数点
value = value.replace(".", "$#$").replace(/\./g, "").replace("$#$", ".");
value = value.replace(/^(\-)*(\d+)\.(\d\d).*$/, '$1$2.$3');
if (value.indexOf('.') < 0 && value != '') {
value = parseInt(value);
}
// 设置最大限制
if (maxNumber) {
const bool = isIncludeMax ? +value >= maxNumber : +value > maxNumber;
if (bool) {
let valueString = String(value)
value = valueString.slice(0, valueString.length - 1)
}
}
return value
},

还有另一种方法,当时我遇到要限制输入最多4位小数的场景,问了豆包给出这样的结果
在每次输入发生变化时,使用正则表达式来验证输入内容是否符合要求。如果不符合,就将输入框的值恢复为上一次符合要求的值。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF - 8">
<title>限制输入数字和小数位数</title>
</head>

<body>
<input type="text" id="inputBox">
<script>
const inputBox = document.getElementById('inputBox');
let lastValidValue = '';
inputBox.addEventListener('input', function () {
const value = this.value;
const regex = /^\d*(\.\d{0,4})?$/;
// 符合正则,记录下来最后的结果
if (regex.test(value)) {
lastValidValue = value;
} else {
// 不符合,就恢复到上一次的结果
this.value = lastValidValue;
}
});
</script>
</body>

</html>

我又问了能否用input事件和string的replace方法写一个,也给出了结果

1
2
3
4
5
6
7
8
9
10
11
numberInput.addEventListener('input', function () {
this.value = this.value.replace(/[^\d.]/g, '');// 只保留数字和小数点
this.value = this.value.replace(/^\./g, '');// 确保不以小数点开头
this.value = this.value.replace(/\.{2,}/g, '.');// 确保只有一个小数点
// 这一步是为了处理可能出现的多个小数点情况,先将第一个小数点替换为一个临时字符串$#$,然后去除所有小数点,再将临时字符串替换回小数点。
this.value = this.value.replace('.', '$#$').replace(/\./g, '').replace('$#$', '.');
// 只保留四位小数
if (this.value.split('.').length > 1) {
this.value = this.value.split('.')[0] + '.' + this.value.split('.')[1].substring(0, 4);
}
});