时间转换解析
程序员文章站
2022-06-18 16:01:00
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]; } }
?
上一篇: java用户角色权限设计
下一篇: 自媒体几个很有意思的结论