Date对象是JavaScript语言内建的数据类型。使用新的Date()创建日期对象。本文主要介绍JavaScript(JS) date.toLocaleFormat() 方法。

1、描述

JavaScript date toLocaleFormat()方法使用指定的格式将日期转换为字符串。

注意:此方法可能不兼容所有浏览器。Date.prototype.toLocaleFormat弃用,可以使用 Intl.DateTimeFormat代替。

2、语法

它的语法如下:

date.toLocaleFormat()

3、参数

formatString:C语言中的strftime()函数所期望的格式相同的格式化字符串。

4、返回值

返回格式化的日期。

5、使用示例

<html>  
   <head>
      <title>JavaScript toLocaleFormat Method</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var dt = new Date(1993, 6, 28, 14, 39, 7);
         document.write( "Formated Date : " + dt.toLocaleFormat( "%A, %B %e, %Y" ) ); //可以使用Intl.DateTimeFormat代替
      </script>      
   </body>
</html>


推荐文档

相关文档

大家感兴趣的内容

随机列表