>>>转化为大写:
>>>toUpperCase 方法
返回一个字符串,该字符串中的所有字母都被转化为大写字母。
strVariable.toUpperCase( )
“String Literal”.toUpperCase( )
说明
toUpperCase 方法对非字母字符不会产生影响。
示例
下面的示例演示了 toUpperCase 方法的效果:
var strVariable = “This is a STRING object”;
strVariable = strVariable.toUpperCase( );
在执行上一条语句后 strVariable 的值为:
THIS IS A STRING OBJECT
>>>转化为小写:
>>>toLowerCase 方法
返回一个字符串,该字符串中的字母被转换为小写字母。
strVariable.toLowerCase( )
“String Literal”.toLowerCase( )
说明
toLowerCase 方法对非字母字符不会产生影响。
下面的示例演示了 of the toLowerCase 方法的效果:
var strVariable = “This is a STRING object”;
strVariable = strVariable.toLowerCase( );
在执行上一条语句后 strVariable 的值为:
this is a string object