코드:
결과보기 »
<!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() { $("button").one("click", function() { // 모든 <button>요소가 처음 클릭됐을 때에만 실행됨. $("#text").append("첫 번째 클릭이에요!<br>"); // 모든 <button>요소가 두 번째 클릭됐을 때부터는 이 이벤트 핸들러가 실행됨. $(this).click(function() { $("#text").append("이 버튼을 벌써 클릭했네요!<br>"); }); }); }); </script> </head> <body> <h1>.one() 메소드</h1> <button>마우스를 클릭해 보세요!</button> <p id="text"></p> </body> </html>