하은양 믿음군 효실맘 호홍홍집s

input box에 숫자 콤마찍기 및 풀기 본문

가벼운 배움/javascript

input box에 숫자 콤마찍기 및 풀기

호홍홍집 2015. 11. 11. 11:36

참고 : http://blog.munilive.com/javascript-comma-uncomma/

 

//콤마찍기
function comma(str) {
	str = String(str);
	return str.replace(/(\d)(?=(?:\d{3})+(?!\d))/g, '$1,');
}

//콤마풀기
function uncomma(str) {
	str = String(str);
	return str.replace(/[^\d]+/g, '');
}

function inputNumberFormat(obj) {
	obj.value = comma(uncomma(obj.value));
}

//