码迷,mamicode.com
首页 > 其他好文 > 详细

react 限制小数点位数

时间:2021-02-05 10:41:28      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   div   limit   type   code   val   ber   限制   react   

limitDecimals = value => {
        const reg = /^(\-)*(\d+)\.(\d).*$/;
        if (typeof value === ‘string‘) {
            return !isNaN(Number(value)) ? value.replace(reg, ‘$1$2.$3‘) : ‘‘;
        } else if (typeof value === ‘number‘) {
            return !isNaN(value) ? String(value).replace(reg, ‘$1$2.$3‘) : ‘‘;
        } else {
            return ‘‘;
        }
    };

 

react 限制小数点位数

标签:ret   div   limit   type   code   val   ber   限制   react   

原文地址:https://www.cnblogs.com/dongxiaolei/p/14373699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!