首页 > 编程 > JavaScript > 正文

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

2019-11-20 12:20:36
字体:
来源:转载
供稿:网友

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

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.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表