js获取本日、本周、本月的时间代码

skylook 25 0 PDF 2020-11-22 01:11:29

本日时间 function showToDay() { var Nowdate=new Date(); M=Number(Nowdate.getMonth())+1 alert(Nowdate.getMonth()+"月,"+Nowdate.getDate()+"号,星期"+Nowdate.getDay()); return Nowdate.getYear()+"-"+M+"-"+Nowdate.getDate(); } 昨天 function showTomorrow() { var tom=new Date(); tom.setDate(tom.

用户评论
请输入评论内容
评分:
暂无评论