美文网首页
处理时间格式

处理时间格式

作者: 王远清orz | 来源:发表于2020-06-21 22:26 被阅读0次
// 处理时间格式函数
function dateFormat(date) {
  // 将日期时间字符串转换成日期对象
  date = new Date(date);
  var year = date.getFullYear();
  var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1;
  var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
  return year + '-' + month + '-' + day;
}

相关文章

网友评论

      本文标题:处理时间格式

      本文链接:https://www.haomeiwen.com/subject/mluzxktx.html