Эта статья нуждается в техническом обзоре.
Эта статья нуждается в редакционном обзоре.
Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.
Интерфейс Event представляет собой любое событие в DOM. Он содержит общие свойства и методы для любого события.
Многие другие интерфейсы наследуют этот элемент, прямо либо косвенно:
AnimationEventAudioProcessingEventBeforeInputEventBeforeUnloadEventBlobEventClipboardEventCloseEventCompositionEventCSSFontFaceLoadEventCustomEventDeviceLightEventDeviceMotionEventDeviceOrientationEventDeviceProximityEventDOMTransactionEventDragEventEditingBeforeInputEventErrorEventFocusEventGamepadEventHashChangeEventIDBVersionChangeEventInputEventKeyboardEventMediaStreamEventMessageEventMouseEventMutationEventOfflineAudioCompletionEventPageTransitionEventPointerEventPopStateEventProgressEventRelatedEventRTCDataChannelEventRTCIdentityErrorEventRTCIdentityEventRTCPeerConnectionIceEventSensorEventStorageEventSVGEventSVGZoomEventTimeEventTouchEventTrackEventTransitionEventUIEventUserProximityEventWheelEvent
Конструктор
Event()- Создает объект
Event.
Свойства
This interface doesn't inherit any property.
Event.bubblesRead only- Логическое значение, указывающее вспыло ли событие вверх по DOM или нет.
Event.cancelableRead only- A boolean indicating whether the event is cancelable.
Event.currentTargetRead only- A reference to the currently registered target for the event.
Event.defaultPreventedRead only- Indicates whether or not
event.preventDefault()has been called on the event. Event.eventPhaseRead only- Indicates which phase of the event flow is being processed.
Event.explicitOriginalTargetRead only- The explicit original target of the event (Mozilla-specific).
Event.originalTargetRead only- The original target of the event, before any retargetings (Mozilla-specific).
Event.targetRead only- A reference to the target to which the event was originally dispatched.
Event.timeStampRead only- Время, когда событие было создано.
Event.typeRead only- Название события.(Чувствительно к регистру)
Event.isTrustedRead only- Indicates whether or not the event was initiated by the browser (after a user click for instance) or by a script (using an event creation method, like event.initEvent)
Методы
This interface doesn't inherit any method.
Event.initEvent()- Initializes the value of an Event created. If the event has already being dispatched, this method does nothing.
Event.preventBubble()Вышла из употребления с версии Gecko 24- Prevents the event from bubbling. Obsolete, use
event.stopPropagationinstead. Event.preventCapture()Вышла из употребления с версии Gecko 24- Obsolete, use
event.stopPropagationinstead. Event.preventDefault()- Отменяет событие (если его возможно отменить).
Event.stopImmediatePropagation()- For this particular event, no other listener will be called. Neither those attached on the same element, nor those attached on elements which will be traversed later (in capture phase, for instance)
Event.stopPropagation()- Stops the propagation of events further along in the DOM.
Event.getPreventDefault()- ?
Смотрите так же
- Types of events available: Event reference
- Comparison of Event Targets (target vs currentTarget vs relatedTarget vs originalTarget)
- Creating and triggering custom events
- For Firefox add-on developers:
- Mozilla related events in real life at wiki.mozilla.org

