返回到:JavaScript对象:JavaScript String 对象
定义和用法
toLowerCase() 方法用于把字符串转换为小写。
语法
string.toLowerCase()
所有主要浏览器都支持 toLowerCase() 方法
例子
把字符串转换为小写:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(Web176.com)</title> </head> <body> <script> var txt="Web176"; document.write(txt.toLowerCase() + "<br>"); document.write(txt.toUpperCase()); </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/jsarrtips/3037.html