| 123456789101112131415161718192021222324 |
- <!-- websockets.html -->
- <input id="input" type="text" />
- <button onclick="send()">Send</button>
- <pre id="output"></pre>
- <script>
- var input = document.getElementById("input");
- var output = document.getElementById("output");
- var socket = new WebSocket("ws://localhost:30002/ping");
- socket.onopen = function () {
- output.innerHTML += "Status: Connected\n";
- };
-
- socket.onmessage = function (e) {
- output.innerHTML += "Server: " + e.data + "\n";
- };
-
- function send() {
- socket.send(input.value);
- //socket.send(json);
- input.value = "";
- }
- </script>
|