合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
~~~ <!DOCTYPE HTML> <html > <head > <meta charset="utf-8" > <script src="http://libs.baidu.com/jquery/2.1.4/jquery.min.js" ></script > </head > <body > <form > <div id="div1" ></div > <hr > <textarea style="width: 300px;height: 100px;" id="content" ></textarea > <input type="button" value="发送" onclick="Send()" > </form > </body > <script > var socket = new WebSocket("ws://127.0.0.1:8095/message"); socket.onmessage = function (e) { $("#div1").prepend("<h3>" + e.data + "</h3>"); }; // //错误事件 // socket.onerror = function (e) { // alert(e.toString()) // }; // // //连接关闭事件 // socket.onclose = function (e) { // alert(e.code) // }; function Send() { socket.send($("#content").val()); $("#content").val("") } </script > </html > ~~~