這篇文章主要介紹了JavaScript中的toLocaleLowerCase()方法使用詳解,是JS入門學習中的基礎知識,需要的朋友可以參考下
此方法用於字符字符串轉換為小寫,同時尊重當前的語言環境。對於大多數語言,這與toLowerCase的返回值一樣。
語法
?
1 string.toLocaleLowerCase( )下面是參數的詳細信息:
NA
返回值:
字符串轉換成小寫使用當前語言環境。
例子:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 <html> <head> <title>JavaScript String toLocaleLowerCase() Method</title> </head> <body> <script type="text/javascript"> var str = "Apples are round, and Apples are Juicy."; document.write(str.toLocaleLowerCase( )); </script> </body> </html>這將產生以下結果:
?
1 apples are round, and apples are juicy.