JavaScript 字符串转换大写
Posted 乱舞春秋__
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 字符串转换大写相关的知识,希望对你有一定的参考价值。
javascript 提供了两种将字符串转换为大写的方法,分别为toUpperCase( ) 方法和toLocaleUpperCase ( ) 方法。
toUpperCase( ) 方法:将字符串转换为大写。
toLocaleUpperCase ( ) 方法:根据本地主机的语言环境,将字符串转换为大写。
注意:toLocaleUpperCase ( ) 方法的判断依据是浏览器的语言设置,一般情况下,该方法与toUpperCase( ) 方法返回的结果是相同的,只有少数几种语言(如土耳其语)具有特殊的大小写映射。
示例:
(1)toUpperCase( ) 方法
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var str1 = 'never give up!';
var str2 = 'the harder you work,the luckier you will become!';
console.log(str1.toUpperCase());
console.log(str2.toUpperCase());
console.log(str1);
console.log(str2);
</script>
</body>
</html
(2)toLocaleUpperCase ( ) 方法
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
var str1 = 'hello world!';
var str2 = 'hi!';
console.log(str1.toLocaleUpperCase());
console.log(str2.toLocaleUpperCase());
console.log(str1);
console.log(str2);
</script>
</body>
</html>
可见,toUpperCase( ) 方法和toLocaleUpperCase ( ) 方法都可以将字符串转换为大写。
值得一提的是,两种方法均不会改变原来的按字符串。
以上是关于JavaScript 字符串转换大写的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript中怎样将字符串中的大写转换成小写同时将小写转换成大写
javascript 将字符串“hAPPY,i'm a student,NOW”中的大写字母转换成小写字母,小写字母转换成大写字母。