public interface EventListener
EventListener
接口是处理事件的主要方法。
用户实现EventListener
接口和寄存器上的他们的收听EventTarget
使用AddEventListener
方法。
用户还应从EventTarget
中删除其EventListener
。
当Node
使用被复制cloneNode
方法EventListener
附接至源极s Node
不附着于复制的Node
。 如果用户希望将相同的EventListener
添加到新创建的副本中,则用户必须手动添加它们。
另见Document Object Model (DOM) Level 2 Events Specification 。
Modifier and Type | Method and Description |
---|---|
void |
handleEvent(Event evt)
每当发生
EventListener 接口注册的类型的事件时,将调用此方法。
|
void handleEvent(Event evt)
EventListener
接口注册的类型的事件时,将调用此方法。
evt
- Event
包含有关事件的上下文信息。
它还包含用于确定事件流和默认操作的stopPropagation
和preventDefault
方法。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.