js格式化时间和js格式化时间戳示例
作者:
这篇文章主要介绍了js格式化时间和js格式化时间戳示例,需要的朋友可以参考下
复制代码 代码如下:
/**
* 时间对象的格式化;
*/
Date.prototype.format = function(format) {
/*
* eg:format="YYYY-MM-dd hh:mm:ss";
*/
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 now = new Date().format("yyyy-MM-dd hh:mm:ss");
复制代码 代码如下:
new Date().format("yy-MM-dd hh:mm");
您可能感兴趣的文章:
- js时间戳转为日期格式的方法
- JavaScript 获取当前时间戳的代码
- js时间戳与日期格式之间相互转换
- javascript时间戳和日期字符串相互转换代码(超简单)
- js时间戳格式化成日期格式的多种方法
- js 时间格式与时间戳的相互转换示例代码
- JS获取当前时间戳方法解析
- JS获取时间的相关函数及时间戳与时间日期之间的转换
- nodejs如何获取时间戳与时间差
- Vue.js 时间转换代码及时间戳转时间字符串
- js获取时间并实现字符串和时间戳之间的转换
- 时间戳转换为时间 年月日时间的JS函数
- js实现把时间戳转换为yyyy-MM-dd hh:mm 格式(es6语法)
- Javascript new Date().valueOf()的作用与时间戳由来详解
- JavaScript时间戳与时间日期间相互转换
- jsp页面中如何将时间戳字符串格式化为时间标签
- javascript日期转换 时间戳转日期格式
- js中 new Date().getTime()得到的是毫秒数时间戳