jquery trim() 功能源代码
更新时间:2011年02月14日 18:45:23 作者:
jquery trim() 作用是,删除字符串两边出现的空格
复制代码 代码如下:
// Used for trimming whitespace
trimLeft = /^\s+/,
trimRight = /\s+$/,
// Use native String.trim function wherever possible
trim: trim ?
function( text ) {
return text == null ?
"" :
trim.call( text );
} :
// Otherwise use our own trimming functionality
function( text ) {
return text == null ?
"" :
text.toString().replace( trimLeft, "" ).replace( trimRight, "" );
},
分析:jquery trim() 作用是,删除字符串两边出现的空格;
其中的关键实现是text.toString().replace( trimLeft, "" ).replace( trimRight, "" );
是将传入的字符串分别两次调用replace,其中正则表达trimLeft是匹配左边的空格,trimRight是匹配右边的空格
相关文章
3Z版基于jquery的图片复选框(asp.net+jquery)
最近在做一个彩票缩水工具,找了几个图片复选框插件始终感觉不太满意,自己动手山寨了一下imageTick插件.2010-04-04
最新评论