To use sockets, consider the WebSocket interface in JavaScript. This interface enables web applications to maintain bidirectional communications with server-side processes.
為了使Web應(yīng)用程序能夠與服務(wù)器端進(jìn)程保持雙向通信,該規(guī)范引入了WebSocket接口。
以下是一些解決Web Sockets的方法:
socket = new WebSocket(url [, protocols ] )
登錄后復(fù)制
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 )
登錄后復(fù)制
以上用于發(fā)送數(shù)據(jù)。
用于關(guān)閉套接字連接。
socket . close( [ code ] [, reason ] )
登錄后復(fù)制
以下返回用于建立連接的URL。
socket . url
登錄后復(fù)制
以上就是如何在JavaScript/HTML中使用套接字?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!