1. 首页
  2. 网络技术
  3. 综合布线
  4. js获取本日、本周、本月的时间代码

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

上传者: 2020-11-22 01:35:29上传 PDF文件 28.34KB 热度 26次
本日时间 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.
用户评论