// 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是匹配右边的空格
