prev/JAVASCRIPT

금액 콤마

WishDEV 2009. 4. 14. 10:22

<script>
//금액 입력과 동시에 콤마찍기 OnKeyUp
function Set_Comma(n){
  return Number(String(n).replace(/\..*|[^\d]/g,"")).toLocaleString().slice(0,-3);
}
</script>
<BODY>
<FORM name="frm">
   
<input type="text" maxlength="20" name="amount" style=" text-align:right;" onkeyup="this.value = Set_Comma(this.value);">
</FORM>
</BODY>
</HTML>