WEB前端

当前位置:首页 > 技术世界 > WEB前端

js万亿级数字转汉字的封装方法

要求如图:

实现方法:

function changeBillionToCN(c) {                //                对传参进行类型处理,非字符串进行转换                if(typeof(c) != "string") {                    c = c.toString();                }                //                对参数进行判断,                if(c.split(".")[0].length >= 3 && c.split(".")[0].length < 4) {                    return(c / 1000).toFixed(2) + "千";                } else if(c.split(".")[0].length >= 4 && c.split(".")[0].length < 8) {                    return(c / 10000).toFixed(2) + "万";                } else if(c.split(".")[0].length >= 8 && c.split(".")[0].length < 13) {                    return(c / 100000000).toFixed(2) + "亿";                } else if(c.split(".")[0].length >= 13) {                    return(c / 1000000000000).toFixed(2) + "兆";                }            }

实测结果:

知识点:

1.数字对字符串的转换:number.toString();

2.字符串长度的判断:string.length;

3.字符串的切割与拼接:string.split(" ")【引号标住需要切开的点】

4.与非或:&&   ||   !

5.小数取位:string.toFixed(2)【括号2代表取2位有效小数】

转载说明:欢迎转载本站所有文章,如需转载请注明来源于《绝客部落》。

本文链接:https://juehackr.net/qianduan/11.html

相关内容

文章评论

表情

共 0 条评论
  • 这篇文章还没有收到评论,赶紧来抢沙发吧~