关于js序列化时间的方法


var time = new Date();
var otime = getMyDate(time);

//将毫秒转换成 年月日 时分秒 格式的 (1970-01-11 00:00:00)
function getMyDate(str) {
  var oDate = new Date(str),
  oYear = oDate.getFullYear(),
  oMonth = oDate.getMonth() 1,
  oDay = oDate.getDate(),
  oHour = oDate.getHours(),
  oMin = oDate.getMinutes(),
  oSen = oDate.getSeconds(),
  oTime = oYear '-' getzf(oMonth) '-' getzf(oDay) ' ' getzf(oHour) ':' getzf(oMin) ':' getzf(oSen); //最后拼接时间
  return oTime;
};


//补0操作
function getzf(num) {
if(parseInt(num) < 10) {
  num = '0' num;
}
  return num;
}

发布了0 篇原创文章 · 获赞 2 · 访问量 8430

猜你喜欢

转载自blog.csdn.net/u011927449/article/details/103964346
今日推荐