2012年12月6日
摘要: 基本方法 var myDate = new Date();myDate.getYear(); //当前年份(2位) myDate.getFullYear(); //获取完整的年份(4位,1970-????) myDate.getMonth(); //获取当前月份(0-11,0代表1月) myDate.getDate(); //获取当前日(1-31) myDate.getDay(); //获取当前星期X(0-6,0代表星期天) myDate.getTime(); //获取当前时间(从1970.1.1开始的毫秒数) 阅读全文
posted @ 2012-12-06 10:59 endora22 阅读(12319) 评论(0) 推荐(0) 编辑