Date对象是JavaScript语言中内置的数据类型。日期对象使用新的Date()创建,如下所示。
创建Date对象后,可以使用多种方法对其进行操作。大多数方法仅允许您使用本地时间或UTC(通用或GMT)时间来获取和设置对象的年,月,日,时,分,秒和毫秒字段。
getDate()
date对象的功能返回其当前日期的月份中的日期。
其语法如下
dateObj.getDate();
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('September 26, 1989 00:4:00'); document.write(dateObj.getDate()); </script> </body> </html>
输出结果
26
如果您不提及月份的日期,则默认情况下将返回1。
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('September, 1989 00:4:00'); document.write(dateObj.getDate()); </script> </body> </html>
输出结果
1
如果在创建日期对象时未将任何值传递给构造函数,则此函数将返回当前日期的月份(当前日期)。
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date(); document.write(dateObj.getDate()); </script> </body> </html>
输出结果
24