js 获取时间对象

1.当前系统时间   var date=new Date();

2.字符串转时间对象  var date=new Date("2018-01-01");

3.获取年份: var year=date.getFullYear();

4.获取月份: var month=date.getMonth()+1;

5.获取天数: var day=date.getDate();

6.获取小时:var hours=date.getHours();

7.获取分钟:var minutes=date.getMinutes();

8.获取秒: var second=date.getSeconds();

 

获取年龄 age=year-year1;

if(month<month1){

  age-=1;

}

posted @ 2018-05-11 21:18  银飞仙  阅读(400)  评论(0编辑  收藏  举报