Blog Content

    티스토리 뷰

    69.jQuery - 양쪽 공백 제거 함수 ( 10.Utileties )

    반응형
    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]



    반응형

    Comments