js字母大小写转换方法
大小写转换方法:
1、转换成大写:toUpperCase()
2、转换成小写:toLowerCase()
3、举例:
(1)var a="[aBc]
a=a.toUpperCase();
alert(a);
提示出来的就是 [ABC]
(2) a=a.toLowerCase();
alert(a);
提示出来的就是 abc
大小写转换方法:
1、转换成大写:toUpperCase()
2、转换成小写:toLowerCase()
3、举例:
(1)var a="[aBc]
a=a.toUpperCase();
alert(a);
提示出来的就是 [ABC]
(2) a=a.toLowerCase();
alert(a);
提示出来的就是 abc
本文标题:js字母大小写转换方法
本文链接:https://www.haomeiwen.com/subject/leguhqtx.html
网友评论