Date对象是JavaScript语言中内置的数据类型。日期对象使用新的Date()创建,如下所示。
创建Date对象后,可以使用多种方法对其进行操作。大多数方法仅允许您使用本地时间或UTC(通用或GMT)时间来获取和设置对象的年,月,日,时,分,秒和毫秒字段。
日期对象的toDateString()函数返回日期部分,不包括时间。
其语法如下
dateObj.toDateString();
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date('September 26, 89 12:4:25:96'); document.write("Current Date: "+dateObj.toDateString()); </script> </body> </html>
输出结果
Current Date: Tue Sep 26 1989
如果未将参数传递给Date构造toDateString()
函数,则该函数将返回当前时间的日期字符串。
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var dateObj = new Date(); document.write("Current Date: "+dateObj.toDateString()); </script> </body> </html>
输出结果
Current Date: 18/10/2018