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


JavaScript Date getUTCSeconds()用法及代碼示例


下麵是Date 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

date.getUTCSeconds()方法用於根據通用時間從給定的Date對象獲取秒。

用法:

DateObj.getUTCSeconds();

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

返回值:它根據通用時間返回給定日期對象的第二個。秒數是0到59之間的整數。



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

上述方法的更多代碼如下:

程序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

支持的瀏覽器:下麵列出了JavaScript Date getUTCSeconds()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • Safari




相關用法


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