當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Intl.ListFormat.supportedLocalesOf()用法及代碼示例


Intl.ListFormat.supportedLocalesOf()方法是JavaScript中的內置方法,它返回一個數組,其中包含日期和時間格式支持的所提供語言環境的數組。

用法:

Intl.ListFormat.supportedLocalesOf(locales, options)

參數:此方法接受上麵提到並在下麵描述的兩個參數:

  • locales:此參數包含帶有BCP 47語言標記的字符串或此類字符串的數組。
  • options:它是一個可選參數。它是一個具有localeMatcher屬性的對象。 localeMatcher是要使用的語言環境匹配算法。它的值為“lookup”和“best fit”。

返回值:此方法返回一個字符串數組,該字符串表示日期和時間格式支持的給定語言環境標簽的子集。

以下示例說明了JavaScript中的Intl.ListFormat.supportedLocalesOf()方法:



範例1:

<script> 
const geeks = ['ban', 'id-u-co-pinyin', 'de-ID']; 
const result = { localeMatcher:'lookup' }; 
let val = Intl.ListFormat.supportedLocalesOf(geeks, result).join(', '); 
console.log(val); 
</script>

輸出:

"id-u-co-pinyin, de-ID"

範例2:

<script> 
const geeks = ['ban', 'id-u-co-pinyin', 'de-ID']; 
let val = Intl.ListFormat.supportedLocalesOf(geeks).join(', '); 
console.log(val); 
</script>

輸出:

"id-u-co-pinyin, de-ID"

支持的瀏覽器:下麵列出了Intl.ListFormat.supportedLocalesOf()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • Opera

相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 JavaScript | Intl.ListFormat.supportedLocalesOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。