//콤마찍기 function numberFormat(num) { var pattern = /(-?[0-9]+)([0-9]{3})/; while(pattern.test(num)) { num = num.replace(pattern,"$1,$2"); } return num; } //콤마제거 function unNumberFormat(num) { return (num.replace(/\,/g,"")); }
toLocaleString를 이용한 제이쿼리로 3자리마다 콤마 넣기
var funcSetCurrency=function($){ $('#tableData td').each(function(){ if(!isNaN(Number($(this).text())) && $(this).text()) $(this).text(Number($(this).text()).toLocaleString().split('.')[0]); }); }; $(document).ready(function(){ funcSetCurrency($); });