当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript Intl.ListFormat.prototype.resolvedOptions()用法及代码示例


Intl.ListFormat.prototype.resolvedOptions() 方法是 JavaScript 中的一个内置方法,它返回一个新对象,该对象具有反映在当前 ListFormat 对象构建期间计算的区域设置和样式格式选项的属性。

用法:

listFormat.resolvedOptions()

参数:此方法不接受任何参数。

返回值:此方法返回一个对象,该对象具有反映在给定 ListFormat 对象的构造过程中计算的区域设置和格式选项的属性。

下面的例子说明了 JavaScript 中的 Intl.ListFormat.prototype.resolvedOptions() 方法:



范例1:


<script>
const geeks = new Intl.ListFormat("de-DE", { style:"short" });
  
const result = geeks.resolvedOptions();
console.log(result.locale); 
console.log(result.style);  
console.log(result.type); 
</script>

输出:

"de"
"short"
"conjunction"

范例2:


<script>
const geeks = new Intl.ListFormat("hi");
  
const result = geeks.resolvedOptions();
console.log(result.locale); 
console.log(result.style);  
console.log(result.type); 
console.log(result.collation); 
console.log(result.numeric); 
</script>

输出:

"hi"
"long"
"conjunction"
undefined
undefined

支持的浏览器: Intl.ListFormat.prototype.resolvedOptions() 方法支持的浏览器如下:

  • 谷歌浏览器
  • Opera

相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 JavaScript | Intl.ListFormat.prototype.resolvedOptions() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。