博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS 将数字转化成为货币格式
阅读量:6831 次
发布时间:2019-06-26

本文共 1987 字,大约阅读时间需要 6 分钟。

最近由于项目的需要需要将数字format成货币格式,自己搞了半天效果不是很好,博客园有篇问题很好,再次转载记录一下

 

JavaScript Money Format(用prototype对Number进行扩展)

Number.prototype.formatMoney = function (places, symbol, thousand, decimal) {        places = !isNaN(places = Math.abs(places)) ? places : 2;        symbol = symbol !== undefined ? symbol : "$";        thousand = thousand || ",";        decimal = decimal || ".";        var number = this,            negative = number < 0 ? "-" : "",            i = parseInt(number = Math.abs(+number || 0).toFixed(places), 10) + "",            j = (j = i.length) > 3 ? j % 3 : 0;        return symbol + negative + (j ? i.substr(0, j) + thousand : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousand) + (places ? decimal + Math.abs(number - i).toFixed(places).slice(2) : "");    };

示例代码

var revenue = 12345678; revenue.formatMoney(); // $12,345,678.00 revenue.formatMoney(0, "HK$ ");
// HK$ 12,345,678 // European formatting: var price = 4999.99; price.formatMoney(2, "€", ".", ",");
// €4.999,99 // It works for negative values, too: (-500000).formatMoney(0, "£ ");// £ -500,000

 

JavaScript function

function formatMoney(number, places, symbol, thousand, decimal) {        number = number || 0;        places = !isNaN(places = Math.abs(places)) ? places : 2;        symbol = symbol !== undefined ? symbol : "$";        thousand = thousand || ",";        decimal = decimal || ".";        var negative = number < 0 ? "-" : "",            i = parseInt(number = Math.abs(+number || 0).toFixed(places), 10) + "",            j = (j = i.length) > 3 ? j % 3 : 0;        return symbol + negative + (j ? i.substr(0, j) + thousand : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousand) + (places ? decimal + Math.abs(number - i).toFixed(places).slice(2) : "");    }

示例代码

  formatMoney(54321); // $54,321  formatMoney(12345, 0, "£ "); // £ 12,345   formatMoney(12345, 2, "£ "); // £ 12,345.00   formatMoney(12345.232, 2, "£ "); // £ 12,345.23

 

转载于:https://www.cnblogs.com/catalina-/p/5041235.html

你可能感兴趣的文章
(转)淘淘商城系列——导入商品数据到索引库
查看>>
Hibernate(十一):映射继承关系的三种方案
查看>>
oracle数据库使用之数据查询入门
查看>>
通过cat方式生成yum源
查看>>
属性动画的概念解析--实现星星控件
查看>>
java之JMX
查看>>
指针常量与常量指针
查看>>
在web.config中配置httpHandlers节点是的说明
查看>>
c++:数据类型的推断type_traits
查看>>
物理结构与逻辑结构
查看>>
Storm工作流程
查看>>
Opencv探索之路(十九):读写xml和yml文件
查看>>
Eclipse插件开发中的选择监听机制(Selection Provider-Listener)
查看>>
14.并发与异步 - 2.任务Task -《果壳中的c#》
查看>>
Linux时间子系统之三:jiffies
查看>>
使用 VisualVM 进行性能分析及调优
查看>>
linux升级OpenSSL
查看>>
《QQ欢乐斗地主》山寨版
查看>>
病毒木马查杀实战第015篇:U盘病毒之脱壳研究
查看>>
SDK是什么?什么是SDK
查看>>