removeAllEvent()

Type : public method

Support : 0.6

Return : -

  • 대상 개체에 해당 이벤트 해제.
    style, script같은 특정 노드에서는 사용할수 없다.
    addEvent()로 등록된 이벤트만 해제된다.

Methods

  • removeAllEvent( childRemove ) : voidver 0.6~

    $B( target ).removeEvent()와 다른점은 자식요소의 이벤트도 해제할 수 있다.
    • childRemove : Boolean
      자식의 이벤트를 해제할지 설정, 기본값 false.

Example

//대상 개체의 등록된 모든 이벤트 해제.
$B( '#box' ).removeAllEvent();

//대상 개체와 자식요소의 등록된 모든 이벤트 해제.
$B( '#box' ).removeAllEvent( true );