--- title: EventSource.onopen slug: Web/API/EventSource/open_event tags: - API - Event Handler - EventSource translation_of: Web/API/EventSource/onopen original_slug: Web/API/EventSource/onopen ---
{{domxref("EventSource")}}接口的 onopen
属性是一个 {{event("Event_handlers", "event handler")}} ,它在收到{{event("open")}} 事件时被调用,在那时,连接刚被打开。
eventSource.onopen = function
evtSource.onopen = function() { console.log("Connection to server opened."); };
注意 :你可以在 GitHub 上看到一个完整的示例— 请看 使用php的SSE(服务器发送事件)demo。
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG', "comms.html#handler-eventsource-onopen", "onopen")}} | {{Spec2('HTML WHATWG')}} | Initial definition |