我们的志愿者还没有将这篇文章翻译为 中文 (简体)。加入我们帮助完成翻译!
close events are generated by several APIs:
- HTML DOM
- Sent to a target
<dialog>to let it know that it has been closed. - IndexedDB API
- Sent to the
IDBDatabaseobject representing a database connection when the database is unexpectedly closed. This happens after all transactions have been aborted. You can useIDBDatabase.oncloseto establish the event handler. - WebRTC API
- Sent to an
RTCDataChannelto let it know that a data connection has been terminated. You can use theRTCDataConnection.oncloseproperty to establish an event handler for this, in addition to usingaddEventListener(). - WebSocket API
- Sent when a WebSocket connection closes. More information needed here.
General info
- Specification
- WHATWG HTML Living Standard
The definition of 'close' in that specification.
Indexed Database API
The definition of 'close' in that specification.
WebRTC 1.0: Real-time Communication Between Browser
The definition of 'close' in that specification. - Interface
Event- Bubbles
- No
- Cancelable
- No
- Target
HTMLDialogElement,IDBDatabase,RTCDataChannel, orWebSocket- Default Action
- None
Properties
Being an Event, this event implements only the properties of this interface.
Methods
Being an Event, this event implements only the methods of this interface.
Related Events
Specifications
| Specification | Status | Comment |
|---|---|---|
| WebRTC 1.0: Real-time Communication Between Browser The definition of 'close' in that specification. |
Working Draft | Definition for the WebRTC API |
| WHATWG HTML Living Standard The definition of 'close' in that specification. |
Living Standard | Definition regarding the <dialog> element |
| Indexed Database API (Second Edition) The definition of 'close' in that specification. |
Editor's Draft | Definition of the connection closing algorithm and its use of the close event |
Browser compatibility
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Support for the WebRTC event | (Yes) | (Yes) | No support | (Yes) | ? |
| Support for the WebSockets event | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
| Support for the IndexedDB event | ? | 50 (50) | ? | ? | ? |
Support for the <dialog> event |
? | ? | ? | ? | ? |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Support for the WebRTC event | ? | ? | ? | No support | ? | ? |
| Support for the WebSockets event | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
| Support for the IndexedDB event | ? | ? | 50.0 (50) | ? | ? | ? |
Support for the <dialog> event |
? | ? | ? | ? | ? | ? |