摘要:
距离15点还有[00:00:00] function addZero(value) { return value < 10 ? "0" + value : value; } function timeDiff() { var nowTime = new Date(); ... 阅读全文
摘要:
1、Date 对象创建 2、Date 对象属性 constructor pototype 3、Date 对象方法 Date() 返回当日的日期和时间。 getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。 getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6 阅读全文