js面向对象学习笔记之四(Date 对象)

//日期字符串转时间戳
  var date="2015-03-18";
  date = new Date(Date.parse(date.replace(/-/g, "/")));
  date = date.getTime();
  document.write(date);

  var date = new Date(); //返回当前的时间对象
  getDate() 	   //日    从 Date 对象返回一个月中的某一天 (1 ~ 31)。
  getDay() 	       //星期  从 Date 对象返回一周中的某一天 (0 ~ 6)。
  getMonth() 	   //月    从 Date 对象返回月份 (0 ~ 11)。 需要加 1
  getFullYear()    //年    从 Date 对象以四位数字返回年份。
  getHours() 	   //时    返回 Date 对象的小时 (0 ~ 23)。
  getMinutes() 	   //分    返回 Date 对象的分钟 (0 ~ 59)。
  getSeconds()     //秒	   返回 Date 对象的秒数 (0 ~ 59)。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。