let sec = new Date().getSeconds().toString()
sec = sec.length < 2 '0' + sec : sec
console.log(sec)
自己实现 String.prototype.padLeft
String.prototype.padLeft = function(len, char) {
return this.length < len ? char + this : this
}
// 如果字符串长度不足两位数,则在字符串前面补上字符 '0'
console.log(new Date().getSeconds().toString().padLeft(2, '0'))
ES6 String.prototype.padStart
https://developer.mozilla.org...
// 如果字符串长度不足两位数,则在字符串前面补上字符 '0'
console.log(new Date().getSeconds().toString().padStart(2, '0'))
顺便安利一下,日期时间类最好的库: Momentjs
中文网:http://momentjs.cn/
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…