使用 javascript 或 HTML 格式化 MySQL 返回的数字
我的 MySQL DB 存储并返回带有两位小数的数字,例如 4 是 4.00。 4.9 是 4.90。
但我想用 HTML 或使用 javascript 来格式化它们,这样 4.00 就是 4,4.90 就是 4.9,4.25 就是 4.25(去掉尾随的零)。
我该怎么做?
谢谢
更新:(要求)
在阅读了一些响应后,我意识到由于服务器端代码返回数据的方式,我需要提供更多信息。 php 返回一个包含数字和许多其他数据的 JSON 字符串,然后将其转储到 jQuery 模板中,并使用以下内容接收数据
<div class="duration">${duration}</div>
My MySQL DB stores and returns numbers with two decimal points, like 4 is 4.00. and 4.9 is 4.90.
But I want to format them in HTML or using javascript such that 4.00 is 4, and 4.90 is 4.9, 4.25 is 4.25 (get rid of the trailing zeros).
How do I do this?
Thanks
UPDATE: (Requirements)
After reading some of the response, I realize I need to provide more info due to the way the server side code returns data.
The php returns a JSON string containing the numeric along with many other data, and then it is dumped into a jQuery template, with the following to receive the data
<div class="duration">${duration}</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 parseFloat。
例如:
Use parseFloat.
e.g:
在 Javascript 中,您可以使用
Number("4.90")
它将返回 4.9。在 PHP 中,您可以使用echo ((double)"4.90")
。In Javascript, you can use
Number("4.90")
which will return 4.9. In PHP you could useecho ((double)"4.90")
.使用正则表达式:请参阅此SO帖子。
Use a regex: see this SO post.