本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - wallimn
- gashero
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- ssydxa219
- e_e
- javashop
- sam123456gz
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ganxueyun
- xyuma
- sichunli_030
- lemonhandsome
- wangchen.ily
- jh108020
- zxq_2017
- jbosscn
- Xeden
- zhanjia
- luxurioust
- forestqqqq
- lzyfn123
- ajinn
- nychen2000
- wjianwei666
- johnsmith9th
- daizj
- hanbaohong
- 喧嚣求静
- ranbuijj
- kingwell.leng
- silverend
- lchb139128
- lich0079
- kristy_yy
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
css 改变英文字母大小写
// 首字母大写
text-transform: capitalize;
// 全小写
text-transform: lowercase;
// 全大写
text-transform: uppercase;
// 全大写
font-variant: small-caps;
prototype的解读之String的capitalize
从这个api的命名我们很直观地就应该知道是首字母大写的操作。
直接上代码吧。
里面也有String.charAt的相关操作,可以看看我写的这个:http://zhangyaochun.iteye.com/blog/1475764
/*
思路还是很简单的,第一个字符大写,其他都小写
*/
capitalize:function(){
return this ...