1、描述
此方法返回转换为小写字符串值。
2、语法
其语法如下:
string.toLowerCase( )
3、返回值
返回转换为小写的字符串值。
4、使用示例
<html> <head> <title>JavaScript String toLowerCase() Method</title> </head> <body> <script type = "text/javascript"> var str = "https://www.CJavaPy.com"; document.write(str.toLowerCase()); </script> </body> </html>
5、输出
https://www.cjavapy.com