/** *时间戳 转换为 日期格式 *site http://www.jb200.com *date 2013-4-8 */ 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);
>>> 您可能感兴趣的文章:
js 时间格式与时间戳转换的例子
js时间戳格式化成日期格式的几种方法
Javascript时间戳与php时间戳转换时要注意什么