摘要: /** * 获取当前时间 */ function p(s) { return s < 10 ? '0' + s: s; } var myDate = new Date(); //获取当前年 var year=myDate.getFullYear(); //获取当前月 var month=myDate.getMonth()+1; //获取当前日 var date=myDate.ge... 阅读全文
posted @ 2018-06-05 13:08 申继林 阅读(111) 评论(0) 推荐(0) 编辑