首頁  >  文章  >  web前端  >  JavaScript 中的國際化是如何運作的?

JavaScript 中的國際化是如何運作的?

WBOY
WBOY轉載
2023-08-24 19:49:021095瀏覽

JavaScript 中的国际化是如何工作的?

在本文中,您將了解 JavaScript 中國際化的工作原理。國際化是準備軟體以支援當地語言和文化環境的過程。它可以包括更改日期和時間格式、更改公制格式、語言格式等。

範例 1

在這個例子中,我們來了解日期和時間格式的變化。

var inputDate = new Date(1990, 2, 25);
console.log("The date is defined as: ")
console.log(inputDate)

console.log("The date in United Kingdom format is: ")
console.log(new Intl.DateTimeFormat('en-GB').format(inputDate));

console.log("The date in American format is: ")
console.log(new Intl.DateTimeFormat('en-US').format(inputDate));

說明

  • 第 1 步 - 將日期時間值定義為「inputDate」變數。

  • 步驟 2 - 使用 DateTimeFormat('en-GB') 函數轉換特定於英國格式的日期時間值。顯示轉換後的值。

  • 步驟 3 - 使用 DateTimeFormat('en-US') 函數轉換特定於美國格式的日期時間值。顯示轉換後的值。

範例 2

var inputNumber = 2153.93;
console.log("The number is defined as: ")
console.log(inputNumber)

console.log("The number after converting to France format is: ")
console.log(new Intl.NumberFormat('it-FR').format(inputNumber));

console.log("The number after converting to American format is: ")
console.log(new Intl.NumberFormat('us-US').format(inputNumber));

說明

  • 第 1 步 - 為「inputNumber」變數定義一個數值。

  • 步驟 2 - 使用 NumberFormat('it-FR') 函數轉換特定於法國格式的數值。顯示轉換後的值。

  • 步驟 3 - 使用 NumberFormat('us-US') 函數轉換特定於美國格式的數值。顯示轉換後的值。

以上是JavaScript 中的國際化是如何運作的?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除