JavaScript String toLowerCase()方法

JavaScript String 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教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程