摘要: 获取当前时间 function show(){ var now = new Date(); var year = now.getFullYear(); //得到年份 var month = now.getMonth()+1;//得到月份 var date = now.getDate();//得到日期 阅读全文
posted @ 2021-11-08 11:50 想学前端的小李 阅读(38) 评论(0) 推荐(0)