首页 > 作文

时间格式化解析

更新时间:2023-04-03 10:53:05 阅读: 评论:0

时间格式化

自己总结的一些时间格式化,可能比较娄,但是还挺好用的

//日期格式化2018-9-9变成2018-09-09与前几天日期export function getday(num, str) {  let today = new date();  let nowtime = today.gettime();  let ms法学排名 = 24 * 3600 * 1000 * num;  today.ttime(parint(nowtime + ms));  let oyear = today.getfullyear();  let omoth = (today.getmonth() + 1).tostring();  if (omoth.length <= 1) omoth = '0' + omoth;  let oday = today.getdate().tostring();  if (oday.length <= 1) oday = '0' + oday;  return oyear + str + omoth + str + oday;}//时间补0export function fillzero(num) {  if (parint(num) < 10) {    num = '0' + num;  }  return num;}//时间戳转换13位数export function transdate(str) {  let odate = new date(str),    oyear = odate.getfullye励志名言警句ar(),    omonth = odate.getmonth() + 1,    oday = odate.getdate(),    ohour = odate.gethours(),    minutes = odate.getminutes(),    otime = fillzero(oyear) + '-' + fillzero(omonth) + '-' + fillzero(oday) + ' ' + fillzero(ohour) + ':' + fillzero(minutes) //最后拼接时间  return otime;}// 时间转换为2018-03-09 10:20:00 export function transdatetime(str) {  let odate = new date(str),    oyear = odate.getfullyear(),    omonth = odate.getmonth() + 1,    oday = odate.getdate(),    ohour = odate.gethours(),    minutes = odate.getminutes(),    cond = odate.getconds(),    otime = fillzero(oyear) + '-' + fillzero(omonth) + '-' + fillzero(oday) + ' ' + fillzero(ohour) + ':' + fillzero(minutes) + ':' + fillzero(cond) //最后拼接时间  return otime;}//时间戳转换10位数export function transdates(str) {  let odate = new date(str * 1000),    o女神排行榜year = odate.getfullyear(),    omonth = odate.getmonth() + 1,    oday = odate.getdate(),    otime = fillzero(oyear) + '年' + fillzero(omonth) + '月' + fillzero(oday) + "日"; //最后拼接时间  return otime;}//时间戳模板2018-09-08export function datetemp(str) {  let odate = new date(str),    oyear = odate.getfullyear(),    omonth = odate.getmonth() + 1,    oday = odate.getdate(),    otime = fillzero(oyear) + '-' + fillzero(omonth) + '-' + fillzero(oday); //最后拼接时间  return otime;}//时间戳模板2018.09.08export function datesave(str) {  let odate = new date(str),    oyear = odate.getfullyear(),    omonth = odate.getmonth() + 1,    oday = odate.getdate(),    otime =创新创效工作总结 fillzero(oyear) + '.' + fillzero(omonth) + '.' + fillzero(oday); //最后拼接时间  return otime;}

模板也许都差不多 还能还有其他情况我没有写上去
调用的方法

//就假设这几种吧  其他的自己可以贵阳私立小学排名榜试试看datesave(new date())transdatetime(new date())datetemp(new date())

本文发布于:2023-04-03 10:53:04,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/08b6ad4d21eb528359895f26ff162ae6.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:时间格式化解析.doc

本文 PDF 下载地址:时间格式化解析.pdf

标签:时间   模板   位数   日期
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图