DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery trim() 功能源代碼
jquery trim() 功能源代碼
編輯:JQuery特效代碼     
代碼如下:
// 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是匹配右邊的空格
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved