js中格式化時間戳
阿新 • • 發佈:2017-11-07
nds 格式 parseint nth efi return def ret new
//將時間戳格式化 function getMyDate(time){ //time為時間戳 if(typeof(time)=="undefined"){ return ""; } var oDate = new Date(time), oYear = oDate.getFullYear(), oMonth = oDate.getMonth()+1, oDay = oDate.getDate(), oHour = oDate.getHours(), oMin = oDate.getMinutes(), oSen= oDate.getSeconds(), oTime = oYear +‘-‘+ getzf(oMonth) +‘-‘+ getzf(oDay) +‘ ‘+ getzf(oHour) +‘:‘+ getzf(oMin) +‘:‘+getzf(oSen);//最後拼接時間 return oTime; }; //補0操作,當時間數據小於10的時候,給該數據前面加一個0 function getzf(num){ if(parseInt(num) < 10){ num= ‘0‘+num; } return num; }
js中格式化時間戳