-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebsocket.html
32 lines (25 loc) · 1.14 KB
/
websocket.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>聊天室</title>
<link rel="stylesheet" href="socket.css">
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" />
<script type="text/javascript" src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script type="text/javascript" src="jQuery.js"></script>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="socket.js"></script>
</head>
<body>
<div class="whole">
<div class="allUsers">在线群众:</div>
<div class="board">
<div class="name"></div>
<div class="message"></div>
<input type="text" id="toSend" class="form-control">
<button class="btn" id="submit">发送</button>
</div>
</div>
</body>
</html>