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


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


Intl.DateTimeFormat.prototype.resolvedOptions() 方法是 JavaScript 中的一个内置方法,它返回一个新对象,该对象具有反映在此 DateTimeFormat 对象初始化期间计算的区域设置、日期和时间格式选项的属性。

用法:

dateTimeFormat.resolvedOptions()

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

返回值:此方法返回一个具有反映区域设置和日期和时间的属性的新对象。

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



范例1:


const geeks = new Intl.DateTimeFormat('zh-CN', { timeZone:'UTC' });
const result = geeks.resolvedOptions();
console.log(result.locale);
console.log(result.calendar);
console.log(result.timeZone);
  
const geeks1 = new Intl.DateTimeFormat('LT');
const result1 = geeks1.resolvedOptions();
console.log(result1.locale);
console.log(result1.calendar);

输出:

"zh-CN"
"gregory"
"UTC"
"lt"
"gregory"

范例2:


var geeks = new Intl.DateTimeFormat('de-XX', { timeZone:'UTC' });
var result = geeks.resolvedOptions();
  
console.log(result.locale);       
console.log(result.calendar);       
console.log(result.numberingSystem); 
console.log(result.timeZone);        
console.log(result.month); 

输出:

"de"
"gregory"
"latn"
"UTC"
"numeric"

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

  • 谷歌浏览器
  • Edge
  • Firefox
  • Opera
  • Safari

相关用法


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