JS获取日期yy-mm-dd格式
方法一:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 |
var
myDate= new
Date(); var
month = myDate.getMonth() + 1; var
Day = myDate.getDate(); var
today = "" ; if (month<10){ if (Day<10){ today = myDate.getFullYear() + "-0"
+ month + "-0"
+ Day; } else { today = myDate.getFullYear() + "-0"
+ month + "-"
+ Day; } } else { if (Day<10){ today = myDate.getFullYear() + "-"
+ month + "-0"
+ Day; } else { today = myDate.getFullYear() + "-"
+ month + "-"
+ Day; } } |
方法二:
1
2
3 |
function
appendZero(s){ return
( "00" + s).substr((s+ "" ).length);} //补0函数 var
d = new
Date(); alert(d.getFullYear() + "-"
+ appendZero(d.getMonth() + 1) + "-"
+ appendZero(d.getDate())); |
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。