欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

简介JavaScript中toUpperCase()方法的使用

程序员文章站 2022-06-01 13:08:39
 该方法返回调用字符串值转换为大写。 语法 string.touppercase( ) 下面是参数的详细信息:  ...

 该方法返回调用字符串值转换为大写。
语法

string.touppercase( )


下面是参数的详细信息:

  •     na

返回值:

  •     返回表示指定对象的字符串

例子:

<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.