运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>JavaScript Dates</h1> <h2>The toLocaleString() Method</h2> <p>Format a date into a string using a language specific format.</p> <p id="demo"></p> <script> const n = new Date(); let text = ""; text += "<p>ar-SA: " + n.toLocaleString("ar-SA"); text += "<p>bn-BD: " + n.toLocaleString("bn-BD"); text += "<p>bn-IN: " + n.toLocaleString("bn-IN"); text += "<p>cs-CZ: " + n.toLocaleString("cs-CZ"); text += "<p>da-DK: " + n.toLocaleString("da-DK"); text += "<p>de-AT: " + n.toLocaleString("de-AT"); text += "<p>de-CH: " + n.toLocaleString("de-CH"); text += "<p>de-DE: " + n.toLocaleString("de-DE"); text += "<p>el-GR: " + n.toLocaleString("el-GR"); text += "<p>en-AU: " + n.toLocaleString("en-AU"); text += "<p>en-CA: " + n.toLocaleString("en-CA"); text += "<p>en-GB: " + n.toLocaleString("en-GB"); text += "<p>en-IE: " + n.toLocaleString("en-IE"); text += "<p>en-IN: " + n.toLocaleString("en-IN"); text += "<p>en-NZ: " + n.toLocaleString("en-NZ"); text += "<p>en-US: " + n.toLocaleString("en-US"); text += "<p>en-ZA: " + n.toLocaleString("en-ZA"); text += "<p>es-AR: " + n.toLocaleString("es-AR"); text += "<p>es-CL: " + n.toLocaleString("es-CL"); text += "<p>es-CO: " + n.toLocaleString("es-CO"); text += "<p>es-ES: " + n.toLocaleString("es-ES"); text += "<p>es-MX: " + n.toLocaleString("es-MX"); text += "<p>es-US: " + n.toLocaleString("es-US"); text += "<p>fa-IR: " + n.toLocaleString("fa-IR"); text += "<p>fi-FI: " + n.toLocaleString("fi-FI"); text += "<p>fr-BE: " + n.toLocaleString("fr-BE"); text += "<p>fr-CA: " + n.toLocaleString("fr-CA"); text += "<p>fr-CH: " + n.toLocaleString("fr-CH"); text += "<p>fr-FR: " + n.toLocaleString("fr-FR"); text += "<p>he-IL: " + n.toLocaleString("he-IL"); text += "<p>hi-IN: " + n.toLocaleString("hi-IN"); text += "<p>hu-HU: " + n.toLocaleString("hu-HU"); text += "<p>id-ID: " + n.toLocaleString("id-ID"); text += "<p>it-CH: " + n.toLocaleString("it-CH"); text += "<p>it-IT: " + n.toLocaleString("it-IT"); text += "<p>ja-JP: " + n.toLocaleString("ja-JP"); text += "<p>ko-KR: " + n.toLocaleString("ko-KR"); text += "<p>nl-BE: " + n.toLocaleString("nl-BE"); text += "<p>nl-NL: " + n.toLocaleString("nl-NL"); text += "<p>no-NO: " + n.toLocaleString("no-NO"); text += "<p>pl-PL: " + n.toLocaleString("pl-PL"); text += "<p>pt-BR: " + n.toLocaleString("pt-BR"); text += "<p>pt-PT: " + n.toLocaleString("pt-PT"); text += "<p>ro-RO: " + n.toLocaleString("ro-RO"); text += "<p>ru-RU: " + n.toLocaleString("ru-RU"); text += "<p>sk-SK: " + n.toLocaleString("sk-SK"); text += "<p>sv-SE: " + n.toLocaleString("sv-SE"); text += "<p>ta-IN: " + n.toLocaleString("ta-IN"); text += "<p>ta-LK: " + n.toLocaleString("ta-LK"); text += "<p>th-TH: " + n.toLocaleString("th-TH"); text += "<p>tr-TR: " + n.toLocaleString("tr-TR"); text += "<p>zh-CN: " + n.toLocaleString("zh-CN"); text += "<p>zh-HK: " + n.toLocaleString("zh-HK"); text += "<p>zh-TW: " + n.toLocaleString("zh-TW"); document.getElementById("demo").innerHTML = text; </script> </body> </html>