這篇文章主要介紹了JavaScript中的toUpperCase()方法的使用,是JS入門學習中的基礎知識,需要的朋友可以參考下
該方法返回調用字符串值轉換為大寫。
語法
?
1 string.toUpperCase( )下面是參數的詳細信息:
NA
返回值:
返回表示指定對象的字符串
例子:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 <html> <head> <title>JavaScript String toUpperCase() Method</title> </head> <body> <script type="text/javascript"> var str = "Apples are round, and Apples are Juicy."; document.write(str.toUpperCase( )); </script> </body> </html>這將產生以下結果:
?
1 APPLES ARE ROUND, AND APPLES ARE JUICY.