코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>jQuery Effects</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script> $(function() { $("#toggleBtn").on("click", function() { $("#text").toggle("slow"); // id가 "text"인 요소를 느리게 나타나게 하거나 숨김. }); }); </script> </head> <body> <h1>요소의 표시 상태 토글</h1> <button id="toggleBtn">요소 표시 토글</button> <p id="text">이 단락을 숨기거나 나타나게 할 거에요!</p> </body> </html>