JS如何将UTC格式时间转本地格式_javascript技巧
程序员文章站
2022-05-20 11:55:57
...
复制代码 代码如下:
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;
}
var TempDate = new Date();
TempDate.toLocaleDateString()//2013年9月4日
TempDate.format("yyyy-MM-dd")//2013-09-04
推荐阅读
-
扩展JS Date对象时间格式化功能的小例子_javascript技巧
-
JS如何将UTC格式时间转本地格式_javascript技巧
-
js转化毫秒为时间格式代码_javascript技巧
-
js实现Form栏显示全格式时间时钟效果代码_javascript技巧
-
js时间日期格式化封装函数_javascript技巧
-
js时间日期格式化封装函数_javascript技巧
-
JS如何将数字类型转化为没3个一个逗号的金钱格式_javascript技巧
-
js 时间格式与时间戳的相互转换示例代码_javascript技巧
-
js将当前时间格式转换成时间搓(自写)_javascript技巧
-
js转化毫秒为时间格式代码_javascript技巧