摘要: 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('/')); 阅读全文
posted @ 2012-05-18 15:50 小猩猩君 阅读(167) 评论(0) 推荐(0) 编辑