定义和用法
toDateString() 方法可把 Date 对象的日期部分转换为字符串,并返回结果。
语法
dateObject.toDateString()
返回值
dateObject 的日期部分的字符串表示,由实现决定,使用本地时间表示。
Type | 描述 |
String | 日期作为字符串输出。 |
下面是参数的详细信息:
NA
返回值:
返回Date对象的人类可读形式的日期部分。
例子:
<html> <head> <title>JavaScript toDateString Method</title> </head> <body> <script type="text/javascript"> var dt = new Date(1993, 6, 28, 14, 39, 7); document.write( "Formated Date : " + dt.toDateString() ); </script> </body> </html>
这将产生以下结果:
Formated Date : Wed Jul 28 1993
Atas ialah kandungan terperinci JavaScript可把Date对象的日期部分转换为字符串的方法toDateString(). Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!