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中文网其他相关文章!