最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

javascript日期轉(zhuǎn)換 時(shí)間戳轉(zhuǎn)日期格式

 更新時(shí)間:2011年11月05日 15:09:58   作者:  
javascript日期轉(zhuǎn)換 時(shí)間戳轉(zhuǎn)日期格式實(shí)現(xiàn)代碼,需要的朋友可以參考下。
復(fù)制代碼 代碼如下:

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 );//這里必須是整數(shù),毫秒
var testStr = testDate.format("yyyy年MM月dd日hh小時(shí)mm分ss秒");
var testStr2 = testDate.format("yyyyMMdd hh:mm:ss");
alert(testStr + " " + testStr2);

相關(guān)文章

最新評(píng)論

静宁县| 兴和县| 天全县| 普兰店市| 宜州市| 彝良县| 巍山| 阿克| 景洪市| 阜新| 白水县| 花莲县| 鄂尔多斯市| 鹤岗市| 定陶县| 平定县| 舟曲县| 灌阳县| 方山县| 太白县| 洪雅县| 常山县| 奈曼旗| 邵阳县| 定兴县| 滨州市| 定结县| 宜都市| 永登县| 临猗县| 建宁县| 彰化县| 五台县| 鸡西市| 松溪县| 万山特区| 建宁县| 红安县| 桂东县| 错那县| 黔西县|