代码如下:
$(function(){
var str=1403058804;
var oDate = new Date(str),
year = oDate.getFullYear(),
oMonth = oDate.getMonth()+1,
oDay = oDate.getDate(),
oTime = year+'-'+getzf(oMonth) +'-'+ getzf(oDay);//最后拼接时间
console.log(oTime);//打印
});
//补0操作
function getzf(num){
if(parseInt(num) < 10){
num = '0'+num;
}
return num;
}
本文介绍了一个使用JavaScript进行日期格式化的简单方法。通过将Unix时间戳转换为Date对象,并利用自定义函数getzf来实现日期补零操作,最终输出格式化的日期字符串。
374

被折叠的 条评论
为什么被折叠?



