1、描述
JavaScript date toLocaleString()
方法使用操作系统的本地约定将日期转换为字符串。
toLocaleString
方法在格式化日期方面依赖于底层操作系统。它使用运行脚本的操作系统的格式约定将日期转换为字符串。例如,在美国,月份出现在日期(04/15/98)之前,而在德国,日期出现在月份(15.04.98)之前。
2、语法
它的语法如下:
Date.toLocaleString ()
3、返回值
以字符串格式返回格式化的日期。
4、使用示例
<html>
<head>
<title>JavaScript toLocaleString Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date(1989, 6, 11, 11, 24, 7);
document.write( "Formated Date : " + dt.toLocaleString() );
</script>
</body>
</html>
5、输出
Formated Date : 1989/7/11 上午11:24:07