toUpperCase 方法
时间:2007-12-27 来源:不详 作者:林子
返回一个字符串,该字符串中的所有字母都被转化为大写字母。
本文来自织梦
strVariable.toUpperCase()
"String Literal".toUpperCase()
内容来自dedecms
说明
toUpperCase 方法对非字母字符不会产生影响。
织梦内容管理系统
示例
下面的示例演示了 toUpperCase 方法的效果: dedecms.com
var strVariable = "This is a STRING object"; strVariable = strVariable.toUpperCase();
内容来自dedecms
在执行上一条语句后 strVariable 的值为:
本文来自织梦
THIS IS A STRING OBJECT
本文来自织梦
要求
版本 1
本文来自织梦
请参阅
String 对象的方法 | String 对象的属性 | toLowerCase 方法 本文来自织梦
应用于: String 对象 copyright dedecms
上一篇:toTimeString 方法 下一篇:toString 方法
文章评论
共有位Admini5网友发表了评论 查看完整内容