码迷,mamicode.com
首页 > 其他好文 > 详细

Date对象常用方法

时间:2017-10-30 17:05:06      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:常用   logs   style   mon   eth   date   class   color   date()   

年月日:

var oDate = new Date()
//
oDate.getFullYear();
//月 返回的月份要+1才正常
oDate.getMonth()+1//
oDate.getDate();
//星期 (0~6对应‘日’到‘六’)
oDate.getDay();

时分秒:

var oDate = new Date()
//
oDate.getHours();
//
oDate.getMinutes(); 
//
oDate.getSeconds();

 

Date对象常用方法

标签:常用   logs   style   mon   eth   date   class   color   date()   

原文地址:http://www.cnblogs.com/amiezhang/p/7754917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!