JavaScript 日期 toLocaleString() 方法使用操作系统的本地约定将日期转换为字符串。
toLocaleString 方法依赖于格式化日期的底层操作系统。它使用运行脚本的操作系统的格式约定将日期转换为字符串。例如,在美国,月份出现在日期之前 (04/15/98),而在德国,日期出现在月份之前 (15.04.98)。
<html> <head> <title>JavaScript toLocaleString Method</title> </head> <body> <script> var dt = new Date(2018, 0, 15, 14, 39, 7); document.write( "Formated Date : " + dt.toLocaleString() ); </script> </body> </html>
以上是如何使用当前区域设置的约定将日期转换为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!