格式化數字(每幾個數字後加一個空格)

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('');
	}
相關文章
相關標籤/搜索