欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

javascript日期转换 时间戳转日期格式

程序员文章站 2023-12-10 22:33:16
复制代码 代码如下: date.prototype.format = function(format) { var o = { "m+" : this.getmonth()...
复制代码 代码如下:

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 testdate = new date( 1320336000000 );//这里必须是整数,毫秒
var teststr = testdate.format("yyyy年mm月dd日hh小时mm分ss秒");
var teststr2 = testdate.format("yyyymmdd hh:mm:ss");
alert(teststr + " " + teststr2);