$(document).ready(function(){ $("input:text[id='money']").on("keyup", function() { $(this).val(addComma($(this).val().replace(/[^0-9]/g,""))); }); }); // 천단위 콤마 function addComma(data) { return data.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); } // 콤마 제거 function removeCommas(data) { if(!data || data.length == 0){ return ""; }else{ return x.split(",").join(""); } } 천단위 콤마도 쓸때마다 맨날 찾아다녀서 정리합..