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中文網其他相關文章!