JavaScript中的Date.toLocaleTimeString()函数

Date对象是JavaScript语言中内置的数据类型。日期对象是使用新对象创建的Date(),如下所示。

创建Date对象后,可以使用多种方法对其进行操作。大多数方法仅允许您使用本地时间或UTC(通用或GMT)时间来获取和设置对象的年,月,日,时,分,秒和毫秒字段。

日期对象的toLocaleTimeString()函数返回当前日期的日期(包括时间)。

语法

其语法如下

dateObj.toLocaleString()

示例

<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.toLocaleString());
   </script>
</body>
</html>

输出结果

Current Date: 9/26/1989, 12:04:25 PM

示例

如果构造函数中提到的日期(如果日期对象不在1到31之间),则此函数返回无效日期。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('September 467, 1989 12:4:25:96');
      document.write("Current Date: "+dateObj.toLocaleString());
   </script>
</body>
</html>

输出结果

Current Date: Invalid Date

示例

如果您不向日期构造函数传递任何内容,则此方法将返回当前时间字符串。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      document.write("Current Date: "+dateObj.toLocaleString());
   </script>
</body>
</html>

输出结果

Current Date: 18/10/2018, 15:57:04 PM