欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

时间转换解析

程序员文章站 2022-03-04 10:49:50
1、年月日与‘-’转换 function processdate(str) { if (str.indexof('-') !=...

1、年月日与‘-’转换

function processdate(str) {
  if (str.indexof('-') != -1) {
    return str.substr(0, 10).replace('-', '年').replace('-', '月') + '日';
  } else {
    return str.replace('年', '-').replace('月', '-').replace('日', '');
  }
}

2、转换成07月20日 18:00

function gettimedate (time) {
  let show_day = ['周日', '周一', '周二', '周三', '周四', '周五', '周六'];
  if (time && time.length > 10) {
    let week = new date(time.substring(0,10)).getday();
    let weeks = show_day[week];
    var yymmdd = time.split(" ")[0].split("-");
    var hhmmss = time.split(" ")[1].split(":");
    return yymmdd[1] + "月" + yymmdd[2] + "日 " + weeks + " "+hhmmss[0] + ":" + hhmmss[1];
  }
}

?