209
2019-12-04 17:01:06 209阅读 0喜欢

字符串转数组split() 函数和数组转字符串join() 函数实例

var string="abcdefg"
console.log(string.split(''));
// 输出结果:["a", "b", "c", "d", "e", "f", "g"]

var array=["a", "b", "c", "d", "e", "f", "g"];
console.log(array.join(','));
// 输出结果:a,b,c,d,e,f,g
78
2019-11-28 18:01:19 78阅读 0喜欢

JavaScript toFixed() 方法可把Number值四舍五入为指定小数位数的数字。

function format(point) {
  var num = new Number(point);
  return num.toFixed(3)
}
console.log(format('2.236834234'))
// 输出结果 2.237
783访问人次
Camila Waz 2020-09-23 17:23:14
118
2019-11-20 11:00:25 118阅读 0喜欢
  • <input type="text" oninput="value= value.match(/\d+(\.\d{0,2})?/) ? 
    this.value.match(/\d+(\.\d{0,2})?/)[0] : ''" placeholder="请输入...">
    
2019-10-29 15:47:03 73阅读 0喜欢
2019-10-29 15:16:28 65阅读 0喜欢
2019-10-08 16:22:02 69阅读 0喜欢
2019-09-23 14:29:47 53阅读 0喜欢