定义和用法
toUpperCase() 方法用于把字符串转换为大写。
语法
string.toUpperCase()
所有主要浏览器都支持 toUpperCase() 方法
实例
把字符串转换为大写:
<!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/3041.html