Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. Web API
  3. EventSource
  4. EventSource: open イベント

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

EventSource: open イベント

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2020年1月⁩.

openEventSource API のイベントで、イベントソースとのコネクションが開かれたときに発生します。

このイベントはキャンセル不可で、バブリングしません。

構文

このイベント名をaddEventListener() などのメソッドで使用するか、イベントハンドラープロパティを設定するかしてください。

js
addEventListener("open", (event) => {});onopen = (event) => {};

イベント型

一般的なEvent です。

js
const evtSource = new EventSource("sse.php");// addEventListener versionevtSource.addEventListener("open", (e) => {  console.log("The connection has been established.");});// onopen versionevtSource.onopen = (e) => {  console.log("The connection has been established.");};

仕様書

Specification
HTML
# event-open
HTML
# handler-eventsource-onopen

ブラウザーの互換性

関連情報

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp