Events - Unbind() 메서드 (이벤트 처리기 해제)

by 조쉬 posted Oct 16, 2014
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

[Unbind.htm]



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

 

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

    <title>이벤트 처리기 해제</title>

    <script src="../js/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>

    <script type="text/javascript">

        $(document).ready(function () {

            //[!] 버튼 클릭시 메시지 출력

            $('#btn').click(function () { alert('클릭됨'); });

 

            //[1] unbind() 메서드로 지정된 이벤트 해제

            $('#btnUnbind').one("click", function () {

                $('#btn').unbind("click"); // 바인딩 해제

            });

        });

    </script>

</head>

<body>

    <div id="my">

    <input type="button" id="btn" value="버튼" class="hover" />

    <input type="button" id="btnUnbind" value="이벤트 해제" class="hover" />

    </div>

</body>

</html>

 



-------------------------------------------------------------------------------------

 


[실행결과]


--> 왼쪽에 있는 '버튼'을 클릭했을때의 화면





--> 오른쪽에 있는 '이벤트 해제'버튼을 먼저 클릭한 후 왼쪽의 '버튼'을 클릭하였을 때의 화면.(바인드가 해제(-> Unbind)되어서 위의 그림처럼 'click'이벤트로 발생하는 메시지박스가 출력되지 않는다.)