js格式化时间
js怎么格式化时间呢?不知道的小伙伴来看看小编今天的分享吧!
js怎么格式化时间有三种格式:
格式一:2018-1-29-10:34:49
var curr_time = new Date();
Myformatter(curr_time);
function myformatter(date){
var strDate = date.getFullYear()+"-";
strDate += date.getMonth()+1+"-";
strDate += date.getDate()+"-";
strDate += date.getHours()+":";
strDate += date.getMinutes()+":";
strDate += date.getSeconds();
alert("strDate:"+strDate);
return strDate ;
}
格式二: 2018-1-29
function myformatter(date){
var strDate = date.getFullYear()+"-";
strDate += date.getMonth()+1+"-";
strDate += date.getDate();
alert("strDate:"+strDate);
return strDate ;
}
格式三:2018-02-05 (月份和日期小于10的时候,在前面自动加零)
function myformatter(date){
var strDate = date.getFullYear()+"-";
if(date.getMonth()<10){
var s = date.getMonth()+1+"-";
strDate += "0"+s;
}else{
strDate += date.getMonth()+1+"-";
}
if(date.getDate()<10){
strDate += "0"+date.getDate();
}else{
strDate += date.getDate();
}
return strDate ;
}
-
丰田荣放座椅高低调节在哪里
是在车辆座椅的侧面调节,主驾驶座椅是在左侧,副驾驶座椅是在右侧,丰田荣放这款车型提供了电动的座椅调节功能,只需要将调节的按键向上方提起,就能够将座椅的高度进行调节,操作非常的简...
问答查看全文>> -
年检标志怎么领有时间规定吗?
年检标志领取规定:1、根据中华人民共和国公安部第 102 号令第四十条 机动车所有人可以在机动车检验有效期满前三个月内向登记地车辆管理所申请检验合格标志;2、申请前,机动车所有...
问答查看全文>> -
充满正能量的晚安心语 2022全新的晚安句子
1、被自己所爱的人深爱着是什么样的感觉呢?会是什么样子呢?想要立刻回答的人,你要知道自己是多么幸福。晚安!2、你改变不了已经发生的,所以不要浪费时间想那么多了,前进,放手,忘了...
句子查看全文>>
推荐
- 1原装丰田86有声浪吗175
- 2雅力士多久换刹车油?248
- 3羽毛球手胶哪个牌子好 羽毛球手胶十大品牌排行榜442
- 4君威精英和豪华的区别是什么132
- 5员工试用期工作总结怎么写331
- 6自由的唯美句子大全 自由的句子140
- 7人呆着无聊的句子 无聊想找人聊天的说说290
- 8rs5的双门版轴距和四门版车型相同吗437