- 博客(2)
- 收藏
- 关注
原创 JS多位数数字进行千位符格式化,带小数位
JS多位数数字进行千位符格式化代码,带小数位。常用于金额function thousandNumFormat(num){ let str = num.toString().replace(/,/g,""); let integer = str.split(".")[0]; //获取整数位 let decimal = str.split(".")[1]; //获取小数 let res = []; if(integer.length > 3){ let counter =
2021-02-20 15:40:17 470
原创 js计算指定范围内的随机数
计算某区间的随机数parseInt(Math.random()*(max - min)) + min如300-500,parseInt(Math.random()*200) + 300
2021-03-09 16:16:55 429
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人