JQuery Number Formatting

前端 未结 8 941
鱼传尺愫
鱼传尺愫 2020-11-27 15:43

There are way too many questions and answers about this basic functionality, I cannot see the wood for the trees.

In Java there is only one simple answer (jav

8条回答
  •  情话喂你
    2020-11-27 16:24

    Browser development progresses:

    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString

     Number.toLocaleString(locale);
    
     // E.g.
     parseFloat("1234567.891").toLocaleString(window.document.documentElement.lang);
     "1,234,567.891"
    

提交回复
热议问题