JavaScript 字符串 – toLowerCase() 方法

JavaScript 字符串 – toLowerCase() 方法

描述

该方法返回调用字符串值转换为小写的结果。

语法

它的语法如下 –

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

学习JavaScript