Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

String.prototype.toLocaleLowerCase()

这篇翻译不完整。请帮忙从英语翻译这篇文章

toLocaleLowerCase()方法返回调用该方法的字符串被转换成小写之后的值,转换规则根据任何本地化特定的大小写映射

语法

str.toLocaleLowerCase()

描述

toLocaleLowerCase()方法返回调用该方法的字符串被转换成小写之后的值,转换规则根据任何本地化特定的大小写映射toLocaleLowerCase()并不会影响字符串自身的值。在大多数情况下,该方法产生的结果和调用toLowerCase()的结果相同,但是在某些本地环境中,比如土耳其语,它的大小写映射并不遵循在Unicode中的默认的大小写映射,因此会有一个不同的结果。

例子

使用toLocaleLowerCase()

console.log('ALPHABET'.toLocaleLowerCase()); // 'alphabet'

规范

规范 状态 注释
ECMAScript 3rd Edition (ECMA-262) Standard

 

原始定义。在JavaScript1.2中实现。

ECMAScript 5.1 (ECMA-262)
String.prototype.toLocaleLowerCase
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
String.prototype.toLocaleLowerCase
Standard  

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

参阅

文档标签和贡献者

 此页面的贡献者: fighting0710
 最后编辑者: fighting0710,