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>