js之Date(日期对象)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js之Date(日期对象)相关的知识,希望对你有一定的参考价值。

通过日期对象我们可以进行一些对日期时间的操作处理

 

一、日期对象的创建:

var myDate=new Date()

二、Date对象方法:

  Link:http://www.w3school.com.cn/jsref/jsref_obj_date.asp

  

三、封装函数,打印当前是何年何月何日何时,几分几秒

  Date() 返回当日的日期和时间

  getFullYear() 从 Date 对象以四位数字返回年份

  getMonth()   从 Date 对象返回月份 (0 ~ 11)

  getDate()  从 Date 对象返回一个月中的某一天 (1 ~ 31)。

  getHours()  返回 Date 对象的小时 (0 ~ 23)

  getMinutes()  返回 Date 对象的分钟 (0 ~ 59)

  getSeconds()  返回 Date 对象的秒数 (0 ~ 59) 

 

  getDay()  从 Date 对象返回一周中的某一天 (0 ~ 6)

  

var newDate = new Date();
       var str = newDate.getFullYear() + ‘年‘ + (newDate.getMonth() + 1)  + ‘月‘ + newDate.getDate() + ‘日‘ + newDate.getHours() + ‘时‘ + newDate.getMinutes() + ‘分‘ + newDate.getSeconds() + ‘秒‘;
       console.log(str);

 

 

 

  

 

  

以上是关于js之Date(日期对象)的主要内容,如果未能解决你的问题,请参考以下文章

JS之Date类型

在js中怎么把date转换成字符串

JS中Date日期函数中的参数使用介绍

js日期date对象

面向对象认识JS-内置对象(重点)--date日期对象

js/javascript: Date 日期和时间