对于“Host Locale”,如何利用 JavaScript 将字符串转换为小写字母?
要将字符串转换为小写字母,请使用 toLocaleLowerCase() 方法。
示例
你可以运行以下代码,了解如何使用 JavaScript 中的 toLocaleLowerCase() 方法 −
<!DOCTYPE html> <html> <body> <script> var a = "WELCOME!"; document.write(a.toLocaleLowerCase()); </script> </body> </html>
广告