javascript - After converting the string date into a general time format, it is found that numbers less than 10 will not automatically add 0 in front, as follows
大家讲道理
大家讲道理 2017-06-26 10:56:49
0
2
929


Do not use string splicing (less than 10, manually add 0 in front), are there any other methods?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(2)
習慣沉默

Usually you don’t just write a JS paragraph to judge. If it’s less than 10, add a 0 in front

扔个三星炸死你
function formatTime(date) {
  var year = date.getFullYear()
  var month = date.getMonth() + 1
  var day = date.getDate()

  var hour = date.getHours()
  var minute = date.getMinutes()
  var second = date.getSeconds()
  return [year, month, day].map(formatNumber).join('-') + ' ' + [hour, minute, second].map(formatNumber).join(':')
}
function formatNumber(n) {
  n = n.toString()
  return n[1] ? n : '0' + n
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!