Posted in Javascript onJanuary 27, 2015
本文实例讲述了js的toLowerCase方法用法。分享给大家供大家参考。具体分析如下:
定义和用法:
toLowerCase() 方法用于把字符串转换为小写。
语法:
stringObject.toLowerCase()
返回值:
一个新的字符串,在其中 stringObject 的所有大写字符全部被转换为了小写字符。
实例:
在本例中,"Hello world! Jb51.Net" 将以小写字母来显示:
<script type="text/javascript"> var str="Hello World! Jb51.Net" document.write(str.toLowerCase()) </script>
效果如下:
hello world! 3water.com
希望本文所述对大家的javascript程序设计有所帮助。
js的toLowerCase方法用法实例
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@