📜  JavaScript 日期 toString() 方法

📅  最后修改于: 2022-05-13 01:56:49.320000             🧑  作者: Mango

JavaScript 日期 toString() 方法

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

  • 例子:
    
    
  • 输出:
    Tue Oct 15 1996 05:35:32 GMT+0530 (India Standard Time)

date.toString()方法用于将给定日期对象的内容转换为字符串。日期对象是使用 date() 构造函数创建的。
句法:

dateObj.toString()

参数:此方法不接受任何参数。它只是与使用 Date() 构造函数创建的 Date 对象一起使用,该构造函数的内容被转换为字符串。

返回值:它返回转换后的字符串。

注意: DateObj是使用 Date() 构造函数创建的有效 Date 对象,其内容被转换为字符串。

上述方法的更多代码如下:
程序 1:这里在创建日期对象时没有传递任何参数,但 toString() 方法仍然返回当前日期名称、月份名称、日期、年份和时间。

                    

输出:

Wed Apr 11 2018 00:50:44 GMT+0530 (India Standard Time)

程序 2:当传递一些随机值列表时, toString() 方法返回相应的生成字符串。

Date() 构造函数的格式类似于 Date(month, date, year, time)。通过遵循这种格式,在下面的程序中给出了一些值,并产生了相应的字符串作为输出。时间格式应该类似于 (number:number:number) 如果时间不在这种格式中,它会将输出作为无效日期。

                    

输出:

Mon Jan 01 2001 00:00:00 GMT+0530 (India Standard Time)
Sat Feb 03 2001 00:00:00 GMT+0530 (India Standard Time)
Wed Apr 05 2006 00:00:00 GMT+0530 (India Standard Time)
Invalid Date"
Wed Apr 05 2006 11:00:12 GMT+0530 (India Standard Time)
Sun Dec 05 2004 00:00:00 GMT+0530 (India Standard Time)

支持的浏览器: JavaScript Date toString() 方法支持的浏览器如下:

  • 谷歌浏览器 1 及更高版本
  • 边缘 12 及以上
  • 火狐 1 及以上
  • Internet Explorer 3 及更高版本
  • Opera 3 及以上
  • Safari 1 及以上