코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>jQuery Utility Method</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script> $(function() { $("button").on("click", function() { $("#text").html($.trim(" 문자열의 시작과 뒤에 많은 공백 문자가 있습니다! ")); }); }); </script> </head> <body> <h1>$.trim() 메소드</h1> <button>공백 문자 제거하기!</button> <pre> 문자열의 시작과 뒤에 많은 공백 문자가 있습니다! </pre> <p id="text"></p> </body> </html>