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


Javascript date.toTimeString()用法及代码示例


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

用法:

dateObj.toTimeString()

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


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

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

    以下示例程序旨在说明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)

    例外情况与此函数相关联:

  1. 在这里,创建日期对象时不传递任何参数作为参数,但toTimeString()函数仍返回当前时间。
    <script> 
    // Here nothing has been assigned 
    // while creating Date object 
    var dateobj = new Date(); 
      
    // It return current time using  
    // toTimeString() function. 
    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() function. 
    var B = dateobj.toTimeString(); 
      
    // Printing the time. 
    document.write(B); 
    </script>

    输出:

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

支持的浏览器:JavaScript date.toTimeString()函数支持的浏览器如下:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


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