扫码一下
查看教程更方便
toUpperCase() 方法用于把字符串转换为大写。
语法如下:
string.toUpperCase()
返回转换为大写的字符串值。
所有主流浏览器都支持 toUpperCase 方法。
<html>
<head>
<title>JavaScript String toUpperCase() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toUpperCase( ));
</script>
</body>
</html>
输出结果:
APPLES ARE ROUND, AND APPLES ARE JUICY.