日期格式化方法
Date 类型还有一些专门用于将日期格式化为字符串的方法。var box = new Date();alert(box.toDateString()); //以特定的格式显示星期几、月、日和年alert(box.toTimeString()); //以特定的格式显示时、分、秒和时区alert(box.toLocaleDateString()); //以特定地区格式显示星期几、月、日和年alert(box.toLocaleTimeString()); //以特定地区格式显示时、分、秒和时区alert(box.toUTCString()); //以特定的格式显示完整的UTC 日期。组件方法,是为我们单独获取你想要的各种时间/日期而提供的方法。需要注意的时候,这些方法中,有带UTC 的,有不带UTC 的。UTC 日期指的是在没有时区偏差的情况下的日期值。alert(box.getTime()); //获取日期的毫秒数,和valueOf()返回一致alert(box.setTime(100)); //以毫秒数设置日期,会改变整个日期alert(box.getFullYear()); //获取四位年份alert(box.setFullYear(2012)); //设置四位年份,返回的是毫秒数alert(box.getMonth()); //获取月份,没指定月份,从0 开始算起alert(box.setMonth(11)); //设置月份alert(box.getDate()); //获取日期alert(box.setDate(8)); //设置日期,返回毫秒数alert(box.getDay()); //返回星期几,0 表示星期日,6 表示星期六alert(box.setDay(2)); //设置星期几alert(box.getHours()); //返回时alert(box.setHours(12)); //设置时alert(box.getMinutes()); //返回分钟alert(box.setMinutes(22)); //设置分钟alert(box.getSeconds()); //返回秒数alert(box.setSeconds(44)); //设置秒数alert(box.getMilliseconds()); //返回毫秒数alert(box.setMilliseconds()); //设置毫秒数alert(box.getTimezoneOffset()); //返回本地时间和UTC 时间相差的分钟数PS:以上方法除了getTimezoneOffset(),其他都具有UTC 功能,例如setDate()及getDate()获取星期几,那么就会有setUTCDate()及getUTCDate()。表示世界协调时间。