通用函数及扩展
(创建时间:2009年06月22日 23:43:00)
Jangogo :
//取Const对象item时忽略大小写 Const.getItemIgnoreCase (sItemName) //字符串去掉前后空格 String.prototype.trim() //求字符串的真实长度,中文为2字符,英文为1个字符 String.prototype.getLength() //字符串replaceAll String.prototype.replaceAll(sFind,sReplace) //字符串的URLEncode String.prototype.UrlEncode() //著名的$()函数 $(sIDorName)
2010-10-20增加一个扩展
//类似C++的字符串格式化(拼接字符串) String.prototype.format() //任意参数个数 //例子: var a = "I Love {0}, and You Love {1},Where are {0}! {4}"; alert(a.format("You","Me"));
文档中心