网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

JavaScript如何实现时间日期格式转换

小编给大家分享一下JavaScript如何实现时间日期格式转换,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!

创新互联公司主营嘉禾网站建设的网络公司,主营网站建设方案,app开发定制,嘉禾h5微信小程序开发搭建,嘉禾网站营销推广欢迎嘉禾等地区企业咨询

时间日期格式转换

Date.prototype.format = function(formatStr) {
 var str = formatStr;
 var Week = ["日", "一", "二", "三", "四", "五", "六"];
 str = str.replace(/yyyy|YYYY/, this.getFullYear());
 str = str.replace(
   /yy|YY/,
   this.getYear() % 100 > 9
     ? (this.getYear() % 100).toString()
     : "0" + (this.getYear() % 100)
 );
 str = str.replace(
   /MM/,
   this.getMonth() + 1 > 9
     ? (this.getMonth() + 1).toString()
     : "0" + (this.getMonth() + 1)
 );
 str = str.replace(/M/g, this.getMonth() + 1);
 str = str.replace(/w|W/g, Week[this.getDay()]);
 str = str.replace(
   /dd|DD/,
   this.getDate() > 9 ? this.getDate().toString() : "0" + this.getDate()
 );
 str = str.replace(/d|D/g, this.getDate());
 str = str.replace(
   /hh|HH/,
   this.getHours() > 9 ? this.getHours().toString() : "0" + this.getHours()
 );
 str = str.replace(/h|H/g, this.getHours());
 str = str.replace(
   /mm/,
   this.getMinutes() > 9
     ? this.getMinutes().toString()
     : "0" + this.getMinutes()
 );
 str = str.replace(/m/g, this.getMinutes());
 str = str.replace(
   /ss|SS/,
   this.getSeconds() > 9
     ? this.getSeconds().toString()
     : "0" + this.getSeconds()
 );
 str = str.replace(/s|S/g, this.getSeconds());
 return str;
};

// 或
Date.prototype.format = function(format) {
 var o = {
   "M+": this.getMonth() + 1, //month
   "d+": this.getDate(), //day
   "h+": this.getHours(), //hour
   "m+": this.getMinutes(), //minute
   "s+": this.getSeconds(), //second
   "q+": Math.floor((this.getMonth() + 3) / 3), //quarter
   S: this.getMilliseconds() //millisecond
 };
 if (/(y+)/.test(format))
   format = format.replace(
     RegExp.$1,
     (this.getFullYear() + "").substr(4 - RegExp.$1.length)
   );
 for (var k in o) {
   if (new RegExp("(" + k + ")").test(format))
     format = format.replace(
       RegExp.$1,
       RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length)
     );
 }
 return format;
};
alert(new Date().format("yyyy-MM-dd hh:mm:ss"));

看完了这篇文章,相信你对“JavaScript如何实现时间日期格式转换”有了一定的了解,如果想了解更多相关知识,欢迎关注创新互联行业资讯频道,感谢各位的阅读!


网站题目:JavaScript如何实现时间日期格式转换
网站链接:http://bjjierui.cn/article/jegosd.html

其他资讯