JavaScript String toLocaleLowerCase()方法
描述
此方法用于将字符串中的字符转换为小写,同时考虑当前地区设置。对于大多数语言,它返回与 toLowerCase 相同的输出。
语法
其语法如下−
string.toLocaleLowerCase()
返回值
返回一个以当前语言环境为准的小写字符串。
示例
尝试以下示例。
<html>
<head>
<title>JavaScript String toLocaleLowerCase() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = "Apples are round, and Apples are Juicy.";
document.write(str.toLocaleLowerCase( ));
</script>
</body>
</html>
输出
apples are round, and apples are juicy.