年月日,时分秒,星期
摘要:var now = new Date(); //当前时间 var nowYear = now.getFullYear(); //当前年 var nowMonth = now.getMonth() +1; //当前月(0-11,0代表1月) var nowDate = now .getDate();
阅读全文
昨天,明天,月初,月末,最近七天,最近一个月,今天零时js
摘要:var now = new Date(); //当前时间 var nowMonth = now.getMonth(); var nowYear = now.getFullYear(); 1.当前时间前一天(昨天) var preDate = new Date(now.getTime() - 24 *
阅读全文