반응형
bind() - 여러개의 이벤트와 펑션을 묶어준다
ex)
$("#buttons").bind("click mouseover",function() { alert('click or mouseOver'); });
unbind() - 이벤트 제거
ex)
$("#buttons").bind("click mousevoer",function(){ $("#buttons").unbind("click"); //click 이벤트 비활성 unbind("click mouseover")= click mouseover 둘다 비활성 }
trigger() - 이벤트의 자동 발생
ex)
$("#buttons").trigger('click'); //p 엘리먼트 클릭 - 자동발생
반응형
'자바스크립트&jQuery' 카테고리의 다른 글
jQuery css (0) | 2011.10.14 |
---|---|
jQuery 마우스 이벤트(클릭한 버튼, 클릭한 위치) event.button, event.screenX, event.screenY (0) | 2011.10.14 |
google jQuery 최신 버전 지원(1.버전대) (0) | 2011.10.07 |
jQuery children(),each() (0) | 2011.10.07 |
글자수 체크 하기 (0) | 2011.10.05 |