How can I format currency by using JQuery [duplicate]
问题 This question already has answers here : Convert to currency format (6 answers) Closed 5 years ago . I am trying to format currency by using this code below: $('#currency').keyup(function(e){ var val = $(this).val(); val = val.replace(/[^0-9]/g,''); if(val.length >= 2) val = '$' + val.substring(0,2) + ',' + val.substring(2); if(val.length >= 6) val = val.substring(0,7) + val.substring(7); if(val.length > 7) val = val.substring(0,7); $(this).val(val); }); But that would work only for volume