With a browser, how do I know which decimal separator does the operating system use?

后端 未结 13 2079
不思量自难忘°
不思量自难忘° 2020-11-27 17:05

I\'m developing a web application.

I need to display some decimal data correctly so that it can be copied and pasted into a certain GUI application that

相关标签:
13条回答
  • 2020-11-27 17:39

    Why not

    0.1.toLocaleString().replace(/\d/g, '')

    0 讨论(0)
提交回复
热议问题