JavaScript参考手册
Intl
Intl.dateTimeFormat.format
该Intl.DateTimeFormat.prototype.format
属性返回一个getter函数,该函数根据此Intl.DateTimeFormat
对象的区域设置和格式化选项来格式化日期。
句法
dateTimeFormat.format(date)
参数
date
格式化的日期。
描述
由format
getter 返回的函数根据此Intl.DateTimeFormat
对象的区域设置和格式化选项将日期格式化为字符串。
例子
运用 format
使用format
getter 函数返回的函数格式化单个日期,例子:
var options = { weekday: 'long', year: 'numeric', month: 'long', day: 'numeric' };
var dateTimeFormat = new Intl.DateTimeFormat('sr-RS', options);
console.log(dateTimeFormat.format(new Date()));
// → "недеља, 7. април 2013."
使用format
与map
使用format
getter 返回的函数来格式化数组中的所有日期。请注意,该函数绑定到它Intl.DateTimeFormat
从中获取,所以它可以直接传递给Array.prototype.map()
。
var a = [new Date(2012, 08), new Date(2012, 11), new Date(2012, 03)];
var options = { year: 'numeric', month: 'long' };
var dateTimeFormat = new Intl.DateTimeFormat('pt-BR', options);
var formatted = a.map(dateTimeFormat.format);
console.log(formatted.join('; '));
// → "setembro de 2012; dezembro de 2012; abril de 2012"
产品规格
Specification |
Status |
Comment |
---|---|---|
ECMAScript Internationalization API 1.0 (ECMA-402)The definition of 'Intl.DateTimeFormat.format' in that specification. |
Standard |
Initial definition. |
ECMAScript Internationalization API 2.0 (ECMA-402)The definition of 'Intl.DateTimeFormat.format' in that specification. |
Standard |
|
ECMAScript Internationalization API 4.0 (ECMA-402)The definition of 'Intl.DateTimeFormat.format' in that specification. |
Draft |
|
浏览器兼容性
Feature |
Chrome |
Edge |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
---|---|---|---|---|---|---|
Basic support |
24 |
12 |
29 (29) |
11 |
15 |
10 |
Feature |
Android |
Chrome for Android |
Firefox Mobile (Gecko) |
IE Phone |
Opera Mobile |
Safari Mobile |
---|---|---|---|---|---|---|
Basic support |
No support |
26 |
56.0 (56) |
No support |
No support |
10 |
Intl相关

JavaScript 是一种高级编程语言,通过解释执行,是一门动态类型,面向对象(基于原型)的解释型语言。它已经由ECMA(欧洲电脑制造商协会)通过 ECMAScript 实现语言的标准化。它被世界上的绝大多数网站所使用,也被世界主流浏览器( Chrome、IE、FireFox、Safari、Opera )支持。JavaScript 是一门基于原型、函数先行的语言,是一门多范式的语言,它支持面向对象编程,命令式编程,以及函数式编程。它提供语法来操控文本、数组、日期以及正则表达式等,不支持 I/O,比如网络