ICode9

精准搜索请尝试: 精确搜索
  • JS 常见的数据操作方法2022-09-08 16:02:42

    //四舍五入 function round2(number, fractionDigits) { with (Math) { return round(number * pow(10, fractionDigits)) / pow(10, fractionDigits); } } // 空替换0 function fun_FillStr(Str) { Str = Str.replace(/(^\s*)|(\s*$)/g, "") == &q

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有