要使用目前語言環境的約定以字串形式傳回日期的「時間」部分,請使用 toLocaleTimeString() 方法。
toLocaleTimeString 方法依賴格式化日期的底層作業系統。它使用運行腳本的作業系統的格式約定將日期轉換為字串。例如,在美國,月份出現在日期之前 (04/15/98),而在德國,日期出現在月份之前 (15.04.98)。
您可以嘗試執行以下程式碼以將日期的「時間」部分作為字串傳回 -
<html> <head> <title>JavaScript toLocaleTimeString Method</title> </head> <body> <script> var dt = new Date(2018, 0, 15, 14, 16, 30); document.write( "Formated Date - Time : " + dt.toLocaleTimeString() ); </script> </body> </html>
以上是如何將目前語言環境的約定,將日期的「時間」部分作為字串傳回?的詳細內容。更多資訊請關注PHP中文網其他相關文章!