當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Date.getHours()用法及代碼示例


Date 對象是 JavaScript 語言中內置的一種數據類型。日期對象是使用 new Date( ) 創建的,如下所示。

創建 Date 對象後,可以使用多種方法對其進行操作。大多數方法隻允許您使用本地時間或 UTC(通用或 GMT)時間獲取和設置對象的年、月、日、小時、分鍾、秒和毫秒字段。

Date 對象的 getHours() 函數接受字符串格式的日期並返回當天的小時。

用法

其語法如下

dateObj.getHours();

示例

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('september 26, 89 12:4:00');
      document.write("Hour of the day:"+dateObj.getHours());
   </script>
</body>
</html>

輸出

Hour of the day:12

示例

如果您在創建日期對象時沒有提到一天中的小時 (/time),則此函數返回 0。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date('september 26, 89');
      document.write("Hour of the day:"+dateObj.getHours());
   </script>
</body>
</html>

輸出

Hour of the day:0

示例

同樣,如果您在創建日期對象(到構造函數)時沒有傳遞任何內容,則此函數返回當天的當前小時。

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var dateObj = new Date();
      document.write("Hour of the day:"+dateObj.getHours());
   </script>
</body>
</html>

輸出

Hour of the day:12

相關用法


注:本文由純淨天空篩選整理自Samual Sam大神的英文原創作品 Date.getHours() function in JavaScript。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。