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


Javascript date.toUTCString()用法及代碼示例


date.toUTCString()是JavaScript中的內置函數,用於根據通用時區UTC將給定日期對象的內容轉換為字符串。date對象是使用date()構造函數創建的。

用法:

dateObj.toUTCString()

注意:在以上語法中,DateObj是使用Date()構造函數創建的有效Date對象,其內容轉換為字符串。


參數:此函數不帶任何參數。它僅與使用Date()構造函數創建的Date對象一起使用,該構造函數的內容轉換為字符串。

返回值:它根據世界時區UTC返回轉換後的字符串。

以下示例程序旨在說明date.toUTCString()函數:-

<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 is converted 
// into a string using toUTCString() function. 
var B = dateobj.toUTCString(); 
  
// Printing the converted string. 
document.write(B); 
</script>

輸出:

Tue, 15 Oct 1996 00:05:32 GMT

    例外情況與該函數相關聯:

  1. 在這裏,創建日期對象時不傳遞任何參數作為參數,但toUTCString()函數仍然根據通用時區UTC返回當前日期,月份名稱,日期,年份和時間。
    <script> 
      
    // Here nothing has been assigned 
    // while creating Date object 
    var dateobj = new Date(); 
      
    // Contents of above date object  
    // is converted into a string  
    // using toUTCString() function. 
    var B = dateobj.toUTCString(); 
      
    // Printing the converted string. 
    document.write(B); 
    </script>

    輸出:

    Wed, 18 Apr 2018 08:30:48 GMT
  2. 當傳遞了一些隨機值列表時,toUTCString()函數將返回相應的產生的字符串。
    Date()構造函數的格式類似於Date(month,month,date,year,time)。通過遵循這種格式,在下麵的程序中將提供一些值,並產生相應的字符串作為輸出。時間格式應類似於(數字:數字:數字)如果時間不是這種格式,則將輸出作為無效日期。
    <script> 
      
    // Here some different values has been 
    // assigned while creating Date object 
    var dateobj1 = new Date('1'); 
    var dateobj2 = new Date('2, 3'); 
    var dateobj3 = new Date('4, 5, 6'); 
    var dateobj4 = new Date('7, 8, 3, 4'); 
    var dateobj5 = new Date('4, 5, 6, 11:00:12'); 
    var dateobj6 = new Date('12, 5, 4, 0:0'); 
      
    // Contents of above date objects is converted 
    // into strings using toUTCString() function. 
    var B = dateobj1.toUTCString(); 
    var C = dateobj2.toUTCString(); 
    var D = dateobj3.toUTCString(); 
    var E = dateobj4.toUTCString(); 
    var F = dateobj5.toUTCString(); 
    var G = dateobj6.toUTCString(); 
      
    // Printing the converted string. 
    document.write(B + "<br>"); 
    document.write(C + "<br>"); 
    document.write(D + "<br>"); 
    document.write(E + "<br>"); 
    document.write(F + "<br>"); 
    document.write(G); 
    </script>                    

    輸出:

    Sun, 31 Dec 2000 18:30:00 GMT
    Fri, 02 Feb 2001 18:30:00 GMT
    Tue, 04 Apr 2006 18:30:00 GMT
    Invalid Date
    Wed, 05 Apr 2006 05:30:12 GMT
    Sat, 04 Dec 2004 18:30:00 GMT

支持的瀏覽器:JavaScript date.toUTCString()函數支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | date.toUTCString() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。