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


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


date.getUTCSeconds()是JavaScript中的內置函數,用於根據通用時間從給定的Date對象獲取秒。

用法:

DateObj.getUTCSeconds();

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


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

返回值:它根據世界時返回給定日期對象的秒。秒是一個整數值,範圍是0到59。

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

<script> 
// Here a date has been assigned according to universal 
// time while creating Date object 
var dateobj = new Date('October 15, 1996 05:35:32 UTC'); 
  
// second from above date object is 
// being extracted using getUTCSeconds(). 
var B = dateobj.getUTCSeconds(); 
  
// Printing second according  
// to universal time. 
document.write(B); 
</script>

輸出:

32

錯誤和異常:

  • 示例1:該月的日期應該在1到31之間,因為沒有一個月的日期大於31,這就是為什麽它返回NaN的原因,即不是一個數字,因為該月的日期不存在。如果月份中的日期不存在,則根據世界通用時間第二個將不存在。
    <script> 
    // Here a date has been assigned according to universal 
    // time while creating Date object 
    var dateobj = new Date('October 33, 1996 05:35:32 UTC'); 
      
    // second from above data object is 
    // being extracted using getUTCSeconds(). 
    var B = dateobj.getUTCSeconds(); 
      
    // Printing second according to universal time. 
    document.write(B); 
    </script>

    輸出:

    NaN
  • 示例2:如果在創建Date對象時未向Date()構造函數提供秒,則getUTCSeconds()函數將根據通用時間返回零(0)。
    <script> 
    // Here a date has been assigned according to universal 
    // time while creating Date object 
    var dateobj = new Date('October 13, 1996 05:35 UTC'); 
      
    // second from above data object is 
    // being extracted using getUTCSeconds(). 
    var B = dateobj.getUTCSeconds(); 
      
    // Printing second according to universal time. 
    document.write(B); 
    </script>

    輸出:

    0
  • 示例3:如果在創建Date對象時未向Date()構造函數提供任何參數,則getUTCSeconds()函數將根據通用時間返回當前秒。
    <script> 
    // Here nothing has been assigned according to universal 
    // time while creating Date object 
    var dateobj = new Date(); 
      
    // second from above date object is 
    // being extracted using getUTCSeconds(). 
    var B = dateobj.getUTCSeconds(); 
      
    // Printing current second  
    // according to universal time. 
    document.write(B); 
    </script>

    輸出:

    41
  • 示例4:如果在創建Date對象時給Date()構造函數賦予了[0,59]範圍之外的秒數,則getUTCSeconds()函數將異常返回0,因為秒範圍在0到59之間,並且88不在此範圍內。
    <script> 
    // Here a date has been assigned according to universal 
    // time while creating Date object 
    var dateobj = new Date('October 13, 1996 05:35:88 UTC'); 
      
    // second from above date object is 
    // being extracted using getUTCSeconds(). 
    var B = dateobj.getUTCSeconds(); 
      
    // Printing second according to universal time. 
    document.write(B); 
    </script>

    輸出:

    0

應用:它具有許多應用,例如根據世界通用時間獲得當前秒數。下麵的程序顯示了此函數的應用之一。它給出了當前的秒數。

<script> 
// Here nothing has been assigned according to universal 
// time while creating a Date object 
var dateobj = new Date(); 
  
// second from above date object is 
// being extracted using getUTCSeconds(). 
var B = dateobj.getUTCSeconds(); 
  
// Printing current second  
// according to universal time. 
document.write(B); 
</script>

輸出:

41

支持的瀏覽器:JavaScript date.getUTCSeconds()函數支持的瀏覽器如下:

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


相關用法


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