JavaScript String toUpperCase() 方法
描述
该方法返回调用字符串值转换为大写的结果。
语法
语法如下所示 −
string.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.