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


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


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

  • 例:
    <script> 
       // Here a date has been assigned 
       // while creating Date object 
       var dateobj =  
       new Date('October 15, 1996 05:35:32'); 
      
       // Contents of above date object 
       // of time portion is returned 
       // using toTimeString() function. 
       var B = dateobj.toTimeString(); 
      
       // Printing the time. 
       document.write(B); 
    </script>                    
  • 输出:
    05:35:32 GMT+0530 (India Standard Time)

date.toTimeString()方法用于以英语返回给定日期对象的时间部分。日期对象是使用date()构造函数创建的。

用法:

dateObj.toTimeString()

参数:此函数不接受任何参数。它仅与使用Date()构造函数创建的Date对象一起使用,该对象的时间部分内容以英语(如语言)返回。

返回值:它以英语返回给定日期对象的时间部分。



注意:DateObj是使用Date()构造函数创建的有效Date对象,该构造函数返回其时间部分的内容。

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

程序1:在这里,创建日期对象时不传递任何参数作为参数,但是toTimeString()方法仍返回当前时间。

<script> 
   // Here nothing has been assigned 
   // while creating Date object 
   var dateobj = new Date(); 
  
   // It return current time using  
   // toTimeString() method. 
   var B = dateobj.toTimeString(); 
  
   // Printing the current time. 
   document.write(B); 
</script>

输出:

14:58:08 GMT+0530 (India Standard Time)

程序2:如果未将时间部分赋予Date()构造函数的参数,则它将时间返回为零(0)。

<script> 
   // Only month date and year are  
   // assigned without time while 
   // creating Date object. 
   var dateobj = new Date('October 15, 1996'); 
  
   // It returns time using  
   // toTimeString() method. 
   var B = dateobj.toTimeString(); 
  
   // Printing the time. 
   document.write(B); 
</script>

输出:

00:00:00 GMT+0530 (India Standard Time)

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

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




相关用法


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