标签:console err pen 消息 func fun new 事件 发送
var ws = new WebSocket("wss://127.0.0.1:8080");
ws.onopen = function(evt) { //绑定连接事件
console.log("Connection open ...");
ws.send("发送的数据");
};
ws.onmessage = function(evt) {//绑定收到消息事件
console.log( "Received Message: " + evt.data);
};
ws.onclose = function(evt) { //绑定关闭或断开连接事件
console.log("Connection closed.");
};
/*
open
message
error
close
*/
标签:console err pen 消息 func fun new 事件 发送
原文地址:https://www.cnblogs.com/leftembrace/p/9052144.html