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%

请测试后使用。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值