PHP 클래스 DOMEvent, microweber

파일 보기 프로젝트 열기: microweber/microweber

공개 프로퍼티들

프로퍼티 타입 설명
$bubbles unknown_type Returns a boolean indicating whether the event bubbles up through the DOM or not.
$cancelable unknown_type Returns a boolean indicating whether the event is cancelable.
$currentTarget unknown_type Returns a reference to the currently registered target for the event.
$data
$detail unknown_type Returns detail about the event, depending on the type of event.
$eventPhase unknown_type NOT IMPLEMENTED
$explicitOriginalTarget unknown_type NOT IMPLEMENTED
$originalTarget unknown_type NOT IMPLEMENTED
$relatedTarget unknown_type Identifies a secondary target for the event.
$runDefault
$target unknown_type Returns a reference to the target to which the event was originally dispatched.
$timeStamp unknown_type Returns the time that the event was created.
$type Returns the name of the event (case-insensitive).

공개 메소드들

메소드 설명
__construct ( $data )
preventDefault ( ) Cancels the event (if it is cancelable).
stopPropagation ( ) Stops the propagation of events further along in the DOM.

메소드 상세

__construct() 공개 메소드

public __construct ( $data )

preventDefault() 공개 메소드

Cancels the event (if it is cancelable).
public preventDefault ( )

stopPropagation() 공개 메소드

Stops the propagation of events further along in the DOM.
public stopPropagation ( )

프로퍼티 상세

$bubbles 공개적으로 프로퍼티

Returns a boolean indicating whether the event bubbles up through the DOM or not.
public unknown_type $bubbles
리턴 unknown_type

$cancelable 공개적으로 프로퍼티

Returns a boolean indicating whether the event is cancelable.
public unknown_type $cancelable
리턴 unknown_type

$currentTarget 공개적으로 프로퍼티

Returns a reference to the currently registered target for the event.
public unknown_type $currentTarget
리턴 unknown_type

$data 공개적으로 프로퍼티

public $data

$detail 공개적으로 프로퍼티

Returns detail about the event, depending on the type of event.
public unknown_type $detail
리턴 unknown_type

$eventPhase 공개적으로 프로퍼티

NOT IMPLEMENTED
public unknown_type $eventPhase
리턴 unknown_type

$explicitOriginalTarget 공개적으로 프로퍼티

NOT IMPLEMENTED
public unknown_type $explicitOriginalTarget
리턴 unknown_type

$originalTarget 공개적으로 프로퍼티

NOT IMPLEMENTED
public unknown_type $originalTarget
리턴 unknown_type

$relatedTarget 공개적으로 프로퍼티

Identifies a secondary target for the event.
public unknown_type $relatedTarget
리턴 unknown_type

$runDefault 공개적으로 프로퍼티

public $runDefault

$target 공개적으로 프로퍼티

Returns a reference to the target to which the event was originally dispatched.
public unknown_type $target
리턴 unknown_type

$timeStamp 공개적으로 프로퍼티

Returns the time that the event was created.
public unknown_type $timeStamp
리턴 unknown_type

$type 공개적으로 프로퍼티

Returns the name of the event (case-insensitive).
public $type