//时间戳转换成指定格式的日期
DateTool.IntDatetimeTo = function(time, format)
{
var testDate = new Date(time);
var o =
{
"M+" : testDate.getMonth()+1,
"d+" : testDate.getDate(),
"h+" : testDate.getHours(),
"m+" : testDate.getMinutes(),
"s+" : testDate.getSeconds(),
"q+" : Math.floor((testDate.getMonth()+3)/3),
"S" : testDate.getMilliseconds()
}
if(/(y+)/.test(format))
{
format = format.replace(RegExp.$1, (testDate.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;
}
相关文章
- 06-03iPhone 获取指定格式的时间和日期
- 06-03APP 和小程序中通过日期格式获取时间戳的一个bug
- 06-03elementui使用day.js格式化后端接口里的日期时间戳
- 06-03【转】PHP获取当前时间、时间戳的各种格式写法汇总[日期时间]
- 06-03Javascript日期格式化指定格式的字符串实现
- 06-03JS时间戳格式化日期时间 由于mysql数据库里面存储时间存的是时间戳,取出来之后,JS要格式化一下显示。
- 06-03Java将CST的时间字符串转换成需要的日期格式字符串
- 06-03jquery将日期转换成指定格式的字符串
- 06-03javascript时间戳转换成yyyy-MM-DD格式
- 06-03javascript两行代码按指定格式输出日期时间