yuanxinru321
function (data) {
  var date = new Date(data)
  var Y = date.getFullYear() + \'-\'
  var M = (date.getMonth() + 1 < 10 ? \'0\' + (date.getMonth() + 1) : date.getMonth() + 1) + \'-\'
  var D = (date.getDate() < 10 ? \'0\' + date.getDate() : date.getDate()) + \' \'
  var h = (date.getHours() < 10 ? \'0\' + date.getHours() : date.getHours()) + \':\'
  var m = (date.getMinutes() < 10 ? \'0\' + date.getMinutes() : date.getMinutes()) + \':\'
  var s = (date.getSeconds() < 10 ? \'0\' + date.getSeconds() : date.getSeconds())
  return Y + M + D + h + m + s
}

 参数data即为从后台或者其他地方传入的时间戳,最后转换的日期格式为:

如果需要其他格式,可以自行变化,如有疑问,可留言!

分类:

技术点:

相关文章: