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%

请测试后使用。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM