removeEvent()

Type : public method

Support : 0.6

Return : -

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

Methods

  • removeEvent( type, handler ) : voidver 0.6~

    기본적인 이벤트 해제.
    • type : String
      "on"빼고, "click"
    • handler : Function
      Event Handler
  • removeEvent( type ) : voidver 0.6~

    대상 개체의 해당 타입으로 등록된 모든 이벤트 해제.
    • type : String
      "on"빼고, "click"
  • removeEvent() : voidver 0.6~

    대상 개체의 등록된 모든 이벤트 해제.

Example

//대상 개체의 등록된 click이벤트 해제.
$B( '#box' ).removeEvent( 'click', mouseHandler );

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

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