扫码一下
查看教程更方便
toLowerCase() 方法用于把字符串转换为小写。
语法如下:
string.toLowerCase( )
返回转换为小写的字符串值。
所有主流浏览器都支持 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.