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


Javascript date.getSeconds()用法及代碼示例


date.getSeconds()是JavaScript中的內置函數,用於從給定的Date對象中獲取秒數。

用法:

DateObj.getSeconds()

在以上語法中,DateObj是使用Date()構造函數創建的有效Date對象,我們希望從該構造函數中獲取秒數。


參數:此函數不帶任何參數。它僅與要從中獲取秒數的Date對象一起使用。

返回值:它返回給定日期對象的第二個。秒是一個整數值,範圍是0到59。

以下示例程序旨在說明getSeconds()方法:示例1:

  • <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var DateObj = new Date('October 15, 1996 05:35:32'); 
      
      // second from above Date object is being  
      // extracted using getSeconds() 
      var sec = DateObj.getSeconds(); 
      
      // Printing second 
      document.write(sec); 
    </script>

    輸出:

    32

錯誤和異常:

  • 範例1:這裏的月份日期必須在1到31之間,因為月份中沒有一個日期大於31,這就是它返回NaN的原因,即不是數字,因為月份的日期不存在。
    <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var DateObj = new Date('October 33, 1996 05:35:32'); 
      
      // second from above Date object is being  
      // extracted using getSeconds() 
      var sec = DateObj.getSeconds(); 
      
      // Printing second 
      document.write(sec); 
    </script>

    輸出:

    NaN
  • 範例2:如果未指定second,則返回零(0)。
    <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var DateObj = new Date('October 13, 1996 05:35'); 
      
      // second from above Date object is being  
      // extracted using getSeconds() 
      var sec = DateObj.getSeconds(); 
      
      // Printing second 
      document.write(sec); 
    </script>

    輸出:

    0
  • 範例3:如果沒有為Date()構造函數提供任何參數,它將返回當前秒數。
    <script> 
      // Creating a Date Object 
      var DateObj = new Date(); 
      
      // second from above Date object is being  
      // extracted using getSeconds() 
      var sec = DateObj.getSeconds(); 
      
      // Printing second 
      document.write(sec); 
    </script>

    輸出:

    8
  • 範例4:如果second是88,則它返回0作為異常,因為秒的範圍在0到59之間,並且88不在此範圍內。
    <script> 
      // Here a date has been assigned  
      // while creating Date object 
      var DateObj = new Date('October 13, 1996 05:35:88'); 
      
      // second from above Date object is being  
      // extracted using getSeconds() 
      var sec = DateObj.getSeconds(); 
      
      // Printing second 
      document.write(sec); 
    </script>

    輸出:

    0

應用程序:它具有許多應用程序,例如獲得最新的Second。下麵的程序顯示了此函數的應用之一。它給出了當前的秒。

  • 範例1:
    <script> 
      // Creating Date Object 
      var DateObj = new Date(); 
      
      // second from above Date Obect is 
      // being extracted using getSeconds() 
      var sec = DateObj.getSeconds(); 
      
      // Printing second 
      document.write(sec); 
    </script>

    輸出:

    8

支持的瀏覽器:JavaScript date.getSeconds()方法支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


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