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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。