코드:
결과보기 »
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>jQuery Event</title> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script> $(function() { $("body").on({ // <body>요소에 click: function() { // click 이벤트가 발생했을 때 $("#text").html("버튼을 클릭했습니다!"); } }, "#btn"); // id가 "btn"인 요소에 이벤트 핸들러를 등록함. }); </script> </head> <body> <h1>이벤트의 연결</h1> <button id="btn">버튼을 클릭해 보세요!</button> <p id="text"></p> </body> </html>