forked from kjessup/PerfectExample-WebSocketsServer
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
59 lines (49 loc) · 1.46 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<title>WebSocket Echo Test</title>
<script language="javascript" type="text/javascript">
var wsUri = "ws://localhost:8181/echo";
var output, input, send;
function init() {
output = document.getElementById("output");
input = document.getElementById("input");
testWebSocket();
}
function testWebSocket() {
websocket = new WebSocket(wsUri, "echo");
websocket.onopen = function(evt) { onOpen(evt) };
websocket.onclose = function(evt) { onClose(evt) };
websocket.onmessage = function(evt) { onMessage(evt) };
websocket.onerror = function(evt) { onError(evt) };
}
function onOpen(evt) {
writeToScreen("CONNECTED");
}
function onClose(evt) {
writeToScreen("DISCONNECTED");
}
function onMessage(evt) {
writeToScreen('<span style="color: blue;">RESPONSE: ' + evt.data+'<\/span>');
}
function onError(evt) {
writeToScreen('<span style="color: red;">ERROR:<\/span> ' + evt.data);
}
function doSend() {
writeToScreen('<span style="color: red;">SENDING:<\/span> ' + input.value);
websocket.send(input.value);
}
function writeToScreen(message) {
output.innerHTML = message
}
window.addEventListener("load", init, false);
</script>
</head>
<body>
<h2>WebSocket Test</h2>
<p>Click the send button to transmit the text to the WebSocket server. The server will echo back the text.</p>
<textarea id="input">Sample Text</textarea>
<button onclick="doSend()">Send</button>
<div id="output"</div>
</body>
</html>