To use sockets, consider the WebSocket interface in JavaScript. This interface enables web applications to maintain bidirectional communications with server-side processes.
為了使Web應用程式能夠與伺服器端進程保持雙向通信,該規範引入了WebSocket介面。
以下是一些解決Web Sockets的方法:
socket = new WebSocket(url [, protocols ] )
Create a new socket using this, wherein parameters URL is a string for the connection and protocols is a string or array of string.
socket . send( data )
以上用於發送資料。
用於關閉套接字連線。
socket . close( [ code ] [, reason ] )
以下傳回用於建立連線的URL。
socket . url
以上是如何在JavaScript/HTML中使用套接字?的詳細內容。更多資訊請關注PHP中文網其他相關文章!