日期算法

mac2022-06-30  15

1 function dateFormat(optioner) { 2 var a = new Date,b; 3 return [a.getFullYear(), (b = (a.getMonth() + 1), b > 10 ? b : '0' + b), a.getDate()].join(optioner); 4 } 5 console.log(dateFormat('/'));

转载于:https://www.cnblogs.com/qzsonline/archive/2012/05/18/2507908.html

最新回复(0)