js时间转换,能够把时间转换成yyyymmdd格式或yyyymm格式



//type为1则转换成yyyymmdd格式,type为2则转换成yyyymm格式

function formatTime(time,type){
var temp_time=new Number(time);
var temp_date=new Date(temp_time);
var temp_year1="";
var temp_month1="";
var temp_day1="";
if(type==1){
temp_year1=temp_date.getFullYear();
temp_month1=(temp_date.getMonth()+1)>9?(temp_date.getMonth()+1):"0"+(temp_date.getMonth()+1);
temp_day1=(temp_date.getDate())>9?(temp_date.getDate()):"0"+(temp_date.getDate());
return temp_year1.toString()+temp_month1.toString()+temp_day1.toString();
}else if(type==2){
temp_year1=temp_date.getFullYear();
temp_month1=(temp_date.getMonth()+1)>9?(temp_date.getMonth()+1):"0"+(temp_date.getMonth()+1);
return temp_year1.toString()+temp_month1.toString();
}
}

该代码来自百度知道:842366175 |四级采纳率52%

请测试后使用。

posted @ 2013-09-18 17:19  剑握在手  阅读(5995)  评论(0编辑  收藏  举报
返回顶部↑