欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

input输入框输入正数、负数、小数并保留两位小数

程序员文章站 2022-06-07 13:43:06
...

第一种方法:

//只能输入正数、负数、小数,不能保留两位小数
//保留两位小数我用的blur()方法手动保留的
<input min="0" onkeyup="this.value=this.value.replace(/[^\-?\d.]/g,'')">

第二种方法:
这是是直接从这位大佬的博客拿过来做的整理,亲测有效
保留两位小数方法链接
https://blog.csdn.net/return_js/article/details/102840141

<input  min="0"  v-model="money"  @input="money = money.replace(money,RestrictedMoney(money))">
			//方法
           plusOrMinus(values) {
                let newValue;
                if (!(/[^0-9.-]/g.test(values))) {
                    newValue = values.replace(/[^\-\d.]/g, '').replace(/\-{2,}/g, '-').replace(/\-{2,}/g, '-').replace(/^\./g, '')
                    .replace(/\.{2,}/g, '.')
                    .replace('.', '$#$')
                    .replace(/\./g, '')
                    .replace('$#$', '.');
                    if (newValue.toString().indexOf('.') > 0 && Number(newValue.toString().split('.')[1].length) > 2) {
                    newValue = parseInt(parseFloat(newValue) * 100) / 100;
                    }
                    if ((newValue.toString().split('-').length - 1) > 1) {
                    newValue = parseFloat(newValue) || '';
                    }
                    if ((newValue.toString().split('-').length) > 1 && newValue.toString().split('-')[0].length > 0) {
                    newValue = parseFloat(newValue) || '';
                    }
                    if (newValue.toString().length > 1 && (newValue.toString().charAt(0) === '0' || (newValue.toString().length > 2 && newValue.toString().charAt(0) === '-' && newValue.toString().charAt(1) === '0' && newValue.toString().charAt(2) !== '.')) && newValue.toString().indexOf('.') < 1) {
                    newValue = parseFloat(newValue) || '';
                    }
                    // 判断整数位最多为9位
                    if (newValue.toString().indexOf('.') > 0 && Number(newValue.toString().split('.')[0].length) > 9) {
                    newValue = `${newValue.toString().substring(0, 9)}.${newValue.toString().split('.')[1]}`;
                    } else if (newValue.toString().indexOf('.') < 0 && Number(newValue.toString().split('.')[0].length) > 9) {
                    newValue = newValue.toString().substring(0, 9);
                    }
                } else {
                    newValue = values.replace(/[^0-9.-]/g, '');
                }
                return newValue;
            },
            // 额外费用校验输入正负数, 保留2位小数 调用公共方法
            RestrictedMoney(values) {
                return this.plusOrMinus(values.toString());
            },

还有其他好的方法,欢迎留言~~~

相关标签: js