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


JavaScript Date toLocaleTimeString()用法及代码示例


下面是Date toLocaleTimeString()方法的示例。

  • 例:
    <script> 
      // Here a date has been assigned 
      // while creating Date object 
      var dateobj = new Date('July 16, 2018 05:35:32'); 
      
      // time from above date object is  
      // being extracted using toLocaleTimeString() 
      var B = dateobj.toLocaleTimeString(); 
      
      // Printing time 
      document.write(B); 
        
    </script>
  • 输出:
    5:35:32 

date.toLocaleTimeString()方法用于从给定的Date对象获取时间。句法:

DateObj.toLocaleTimeString()

参数:此方法不接受任何参数。它仅与我们要从中获取时间的Date对象一起使用。

返回值:它返回一个字符串,该字符串是给定Date对象的时间。

注意:DateObj是使用Date()构造函数创建的有效Date对象,我们希望从该构造函数中获取时间。



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

PRogram 1:月份的日期应该在1到31之间,因为没有一个月份的日期大于31,这就是为什么它返回无效日期的原因,因为月份的日期不存在。因此,当月份的日期设为36(即大于31)时,Year将不存在。

<script> 
  // Here a date has been assigned 
  // while creating Date object 
  var dateobj = new Date('July 36, 2018 05:35:32'); 
   
  // time from above date object is 
  // being extracted using toLocaleTimeString() 
  var B = dateobj.toLocaleTimeString(); 
   
  // Printing time 
  document.write(B);   
    
</script>

输出:

Invalid Date

程序2:如果未将任何参数作为参数提供给Date()构造函数,则将当前日期传递给Date对象,因此toLocaleTimeString()将返回当前时间。

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

输出:该程序返回的时间为当前时间

4:09:16 

支持的浏览器:下面列出了JavaScript Date toLocaleTimeString()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari




相关用法


注:本文由纯净天空筛选整理自Kartikaybhutani大神的英文原创作品 JavaScript Date toLocaleTimeString() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。