格式化数字(每几个数字后加一个空格)

onInput = ({ detail }) => {
		const value = detail.value; // 输入的字符串
		const newValue = value.replace(/([^0-9])/g, ''); // 只允许输入数字
		const formatValue = newValue.replace(/(\d{4})(?=\d)/g, '$1 '); // 每4个数字后面加一个空格
		const inputLen = this.getOriginValue().length;
		if (inputLen > this.maxLen) { // 如果输入的字符大于最大输入长度则禁止继续输入
			this.inputRef.inputRef.value = this.state.recharge_phone;
			return;
		}

		const end = () => {
			setTimeout(() => {
				this.end();
			}, 10);
		};

		if (inputLen >= this.minLen) {
			this.setState({ isValidNo: true, recharge_phone: formatValue }, end);
		} else {
			this.setState(
				{ isValidNo: false, recharge_phone: formatValue, activeItem: -1 },
				end
			);
		}

		return formatValue;
	};


     /**
	 * 移动光标位置到最后面
	 */
	end() {
		const obj = this.inputRef.inputRef;
		const len = this.state.recharge_phone.length;
		if (document.hasOwnProperty('selection')) {
			const sel = obj.createTextRange();
			sel.moveStart('character', len);
			sel.collapse();
			sel.select();
		} else if (
			typeof obj.selectionStart === 'number' &&
			typeof obj.selectionEnd === 'number'
		) {
			obj.selectionStart = obj.selectionEnd = len + 1;
		}
	}

	/**
	 * 获取input的原始值
	 */
	getOriginValue() {
		return this.inputRef.inputRef.value.split(' ').join('');
	}

  

转载于:https://www.cnblogs.com/toward-the-sun/p/11451728.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值