The WebRTC open event is sent to an RTCDataChannel 对象的 onopen event handler when the underlying transport used to send and receive the data channel's messages is opened or re-opened.

冒泡 No
可取消 No
接口 RTCDataChannelEvent
事件处理程序特性 onopen

范例

This example adds to the RTCDataChannel dc a handler for the open event that adjusts the user interface to indicate that a chat window is ready to be used after a connection has been established. It enables the message input box and send button as well as enabling the disconnect button and disabling the connect button. Finally, the message input box is focused so the user can immediately begin to type.

dc.addEventListener("open", ev => {
  messageInputBox.disabled = false;
  sendMessageButton.disabled = false;
  disconnectButton.disabled = false;
  connectButton.disabled = true;
  messageInputBox.focus();
}, false);
					

This can also be done by directly setting the value of the channel's onopen event handler property.

dc.onopen = ev => {
  messageInputBox.disabled = false;
  sendMessageButton.disabled = false;
  disconnectButton.disabled = false;
  connectButton.disabled = true;
  messageInputBox.focus();
}
					

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
桌面 移动
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
open event Chrome 56 Edge ≤79 Firefox Yes IE No Opera 43 Safari Yes WebView Android 56 Chrome Android 56 Firefox Android Yes Opera Android 43 Safari iOS Yes Samsung Internet Android 6.0

图例

完整支持

完整支持

不支持

不支持

另请参阅

元数据

  • 最后修改: