JavaScript中的Date.toTimeString()函数

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

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

日期对象的toTimeString()函数返回日期对象中的时间。

语法

其语法如下

dateObj.toTimeString()

示例

<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 Time: "+dateObj.toTimeString());
   </script>
</body>
</html>

输出结果

Current Time: 12:04:25 GMT+0530 (India Standard Time)

示例

如果在创建日期对象时未将参数传递给构造函数,则此函数将返回当前时间。

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

输出结果

Current Time: 14:56:58 GMT+0530 (India Standard Time)

示例

如果在创建日期对象时未在构造函数中提及时间,则此函数将时间返回为0。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('September 26, 89');
      document.write("Current Time: "+dateObj.toTimeString());
   </script>
</body>
</html>

输出结果

Current Time: 00:00:00 GMT+0530 (India Standard Time)