ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • jQuery - jQuery.trim()
    jQuery 2020. 6. 23. 17:05

    jQuery.trim()

     

     - 문자열에 있는 공백(whitespace)을 제거한다.

     

       주의할 점은 문자열 앞과 뒤에 있는 공백은 제거하지만, 문자열 중간에 있는 공백은 제거하지 않는다.

     

    문법

    jQuery.trim( str )

    예제

    <!doctype html>
    
    <html lang="ko">
    
      <head>
      
        <meta charset="utf-8">
        
        <title>jQuery</title>
        
        <script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
        
        <script>
        
          $( document ).ready( function() {
          
            var str = '    Lorem Ipsum  dolor    ';
            
            $( '.ab' ).html( str );
            
            $( '.cd' ).html( jQuery.trim( str ) );
            
          } );
          
        </script>
        
      </head>
      
      <body>
      
        <pre class="ab"></pre>
        
        <pre class="cd"></pre>
        
      </body>
    </html>
    

    'jQuery' 카테고리의 다른 글

    jQuery - .not()  (0) 2020.06.23
    jQuery - .load()  (0) 2020.06.23
    jQuery - jQuery.inArray()  (0) 2020.06.23
    jQuery - .html()  (0) 2020.06.23
    jQuery - .hover()  (0) 2020.06.23

    댓글

Designed by Tistory.