当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。