Javascript String toLowerCase 方法

返回 Javascript String 对象


定义

toLowerCase() 方法用于把字符串转换为小写。

语法

语法如下:

string.toLowerCase( )

返回值

返回转换为小写的字符串值。

浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

所有主流浏览器都支持 toLowerCase 方法。

示例

<html>
   <head>
      <title>JavaScript String toLowerCase() Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var str = "Apples are round, and Apples are Juicy.";
         document.write(str.toLowerCase( ));
      </script>      
   </body>
</html>

输出结果:

apples are round, and apples are juicy.

尝试一下


返回 Javascript String 对象

查看笔记

扫码一下
查看教程更方便