js 对时间的操作 js 处理json时间格式

时间:2023-01-08 22:07:16


js格式化当前时间为yyyy-mm-dd形式:  点击打开链接

function getNowFormatDate(day)
{
//var day = new Date();
var Year = 0;
var Month = 0;
var Day = 0;
var CurrentDate = "";
//初始化时间
//Year= day.getYear();//有火狐下2008年显示108的bug
Year= day.getFullYear();//ie火狐下都可以
Month= day.getMonth()+1;
Day = day.getDate();
//Hour = day.getHours();
// Minute = day.getMinutes();
// Second = day.getSeconds();
CurrentDate += Year + "-";
if (Month >= 10 )
{
CurrentDate += Month + "-";
}
else
{
CurrentDate += "0" + Month + "-";
}
if (Day >= 10 )
{
CurrentDate += Day ;
}
else
{
CurrentDate += "0" + Day ;
}
return CurrentDate;
}

js 处理json时间格式

getNowFormatDate(new Date(item[0].createDate))    利用上面的函数进行处理;