반응형
jQuery를 이용한 양쪽 공백 제거 예제입니다.
02.Trim.htm |
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title>양쪽 공백 제거 함수</title>
<script src="../jQuery/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{ var
s = " Abc Def Fed Cba "; alert("["
+ s + "]"); alert(s.length); alert("["
+ $.trim(s) + "]"); //양쪽 공백 제거 alert(jQuery.trim(s).length); //17 - 2 = 15
});
</script> </head> <body> </body> </html> |
결과화면 |
[그림69-1] |
반응형
'jQuery | javascript | CSS' 카테고리의 다른 글
71.jQuery - Param.htm ( 10.Utileties ) (0) | 2009.11.17 |
---|---|
70.jQuery - $.noConflict() ( 10.Utileties ) (0) | 2009.11.17 |
68.jQuery - 현재 사용자의 브라우저 정보 제공 ( 10.Utileties ) (0) | 2009.11.17 |
-- 현재 까지의 jQuery 소스7 -- (0) | 2009.11.17 |
67.jQuery - $.ajaxSetup()으로 $.ajax() 단순화 ( 09.Ajax ) (0) | 2009.11.17 |
Comments