PHP前端开发

如何在JavaScript中将字符串转换为小写字母?

百变鹏仔 3个月前 (09-21) #HTML
文章标签 转换为

要将 JavaScript 中的字符串转换为小写字母,请使用 toLocaleLowerCase() 方法。

示例

您可以尝试运行以下代码来了解如何在 JavaScript 中使用 toLocaleLowerCase() 方法 -

实时演示

<!DOCTYPE html><html>   <body>      <script>         var a = "WELCOME!";         document.write(a.toLocaleLowerCase());      </script>   </body></html>