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


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


date.toDateString()是JavaScript中的內置函數,用於將給定日期對象的日期部分內容轉換為字符串。date對象是使用date()構造函數創建的。
在以下語法中,DateObj是使用Date()構造函數創建的有效Date對象,該構造函數的date部分內容轉換為字符串。
用法:

dateObj.toDateString()

參數:此函數不帶任何參數。它僅與使用Date()構造函數創建的Date對象一起使用。
返回值:它返回日期部分Date()構造函數內容的轉換後的字符串。

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


<script> 
// Here a date has been assigned 
// while creating Date object 
var dateobj = new Date('October 15, 1996 05:35:32'); 
  
// Contents of date portion of above date object 
// is converted into a string using toDateString() function. 
var B = dateobj.toDateString(); 
  
// Printing the converted string. 
document.write(B); 
</script>

輸出:

Tue Oct 15 1996

錯誤和異常
示例1:在這裏,創建日期對象時不傳遞任何參數作為參數,但是toDateString()函數仍然返回當前日期名稱,月份名稱,日期,年份。

<script> 
// Here nothing has been assigned 
// while creating Date object 
var dateobj = new Date(); 
  
// Contents of date portion of above date object is 
// converted into a string using toDateString() function. 
var B = dateobj.toDateString(); 
  
// Printing the converted string. 
document.write(B); 
</script>

輸出:

Mon Apr 23 2018

示例2:當傳遞了一些隨機值列表時,toDateString()函數將返回相應的產生的字符串。
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 date portion of above date objects is 
// converted into strings using toDateString() function. 
var B = dateobj1.toDateString(); 
var C = dateobj2.toDateString(); 
var D = dateobj3.toDateString(); 
var E = dateobj4.toDateString(); 
var F = dateobj5.toDateString(); 
var G = dateobj6.toDateString(); 
  
// 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>

輸出:

Mon Jan 01 2001
Sat Feb 03 2001
Wed Apr 05 2006
Invalid Date
Wed Apr 05 2006
Sun Dec 05 2004

重要事項
月,日期,小時,分鍾,秒和毫秒的月份範圍必須分別為0到11,日期為1到31,小時為0到23,分鍾為0到59、0到59秒,0到59 999(毫秒),否則toDateString()函數返回無效日期。
讓我們來看看這個超出範圍主題的JavaScript代碼:
示例1:從45開始給出的日期超出了日期範圍,這就是下麵的代碼將輸出作為null的原因。

<script> 
// Here a date has been assigned 
// while creating Date object 
var dateobj = new Date('October 45, 1996 05:35:32'); 
  
// Contents of date portion of above date object is 
// converted into a string using toDateString() function. 
var B = dateobj.toDateString(); 
  
// Printing the converted string. 
document.write(B); 
</script>

輸出:

Invalid Date

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

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


相關用法


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