码迷,mamicode.com
首页 > Web开发 > 详细

js字母大小写转换

时间:2014-05-26 08:16:22      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:c   code   ext   a   get   strong   

function a(){

  document.getElementById("test").value = document.getElementById("test").value.toUpperCase();

}

function b(){

  document.getElementById("test2").value = document.getElementById("test2").value.toLowerCase();

}

</script>

<BODY>

在这里输入小写,会自动转为大写:<input type=text id=test onkeyup="a()"><br/>

在这里输入大写,会自动转为小写:<input type=text id=test2 onkeyup="b()">

</BODY>

 

toLocaleUpperCase 方法
返回一个字符串,其中所有的字母字符都被转换为大写,同时适应宿主环境的当前区域设置。

stringVar.tolocaleUpperCase( )

必选的 stringVar 引用是一个 String 对象,值或文字。

说明
toLocaleUpperCase 方法转换字符串中的字符,同时适应宿主环境的当前区域设置。在大多数情况下,其结果与利用 toUpperCase 方法所得到的结果是一样的。然而,如果语言规则与常规的 Unicode 大小写映射方式冲突,那么结果就会不同。


toLocaleLowerCase 方法
返回一个字符串,其中所有的字母字符都被转换为小写,同时考虑到宿主环境的当前区域设置。

stringVar.tolocaleLowerCase( )

必选的 stringVar 引用是一个 String 对象,值或文字。
说明
toLocaleLowerCase 方法转换字符串中的字符,同时适应宿主环境的当前区域设置。在大多数情况下,其结果与利用 toLowerCase 方法所得到的结果是一样的。然而,如果语言规则与常规的 Unicode 大小写映射方式冲突,那么结果就会不同。


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


toUpperCase 方法
返回一个字符串,该字符串中的所有字母都被转化为大写字母

strVariable.toUpperCase( )
"String Literal".toUpperCase( )

说明
toUpperCase 方法对非字母字符不会产生影响。

示例
下面的示例演示了 toUpperCase 方法的效果:

var strVariable = "This is a STRING object";
strVariable = strVariable.toUpperCase( );
在执行上一条语句后 strVariable 的值为:
THIS IS A STRING OBJECT

js字母大小写转换,布布扣,bubuko.com

js字母大小写转换

标签:c   code   ext   a   get   strong   

原文地址:http://www.cnblogs.com/zhouzongqing/p/3747616.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!