js大小写转换
js字母大小写转换方法: 1、转换成大写:toUpperCase() 2、转换成小写:toLowerCase() 3、举例:
(1)var a="aBcD";
a=a.toUpperCase();
alert(a);
// 提示出来的就是 ABCD
(2)var a="aBcD";
a=a.toLowerCase();
alert(a);
// 提示出来的就是 abcd
js大小写转换最先出现在Python成神之路。
共有 0 条评论