JavaScript 大小写转换

作者:vkvi 来源:ITPOW(原创) 日期:2008-7-30

大写转换为小写-toLowerCase

strVariable.toLowerCase()
"String Literal".toLowerCase()

小写转换为大写

strVariable.toUpperCase()
"String Literal".toUpperCase()
相关文章