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