jquery trim()기능 소스 코드

787 단어 jquerytrim

// 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 는 오른쪽 에 있 는 빈 칸 입 니 다.

좋은 웹페이지 즐겨찾기