代碼如下:
// 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是匹配右邊的空格