toLowerCase 方法

返回一个字符串,该字符串中的所有字母都被转换为小写字母。

function toLowerCase() : String

备注

toLowerCase 方法对非字母字符无效。

示例

下面的示例说明了 toLowerCase 方法的效果:

var strVariable = "This is a STRING object";
strVariable = strVariable.toLowerCase();

最后一个语句后面的 strVariable 的值为:

this is a string object

要求

版本 1

应用于:

String 对象

请参见

参考

toUpperCase 方法