//时间戳转换成指定格式的日期
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;
}
相关文章
- 01-02iPhone 获取指定格式的时间和日期
- 01-02APP 和小程序中通过日期格式获取时间戳的一个bug
- 01-02elementui使用day.js格式化后端接口里的日期时间戳
- 01-02【转】PHP获取当前时间、时间戳的各种格式写法汇总[日期时间]
- 01-02Javascript日期格式化指定格式的字符串实现
- 01-02JS时间戳格式化日期时间 由于mysql数据库里面存储时间存的是时间戳,取出来之后,JS要格式化一下显示。
- 01-02Java将CST的时间字符串转换成需要的日期格式字符串
- 01-02jquery将日期转换成指定格式的字符串
- 01-02javascript时间戳转换成yyyy-MM-DD格式
- 01-02javascript两行代码按指定格式输出日期时间