-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatroom.html
30 lines (30 loc) · 963 Bytes
/
chatroom.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>websocket 聊天室</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="container">
<h2>websocket 聊天室</h2>
<ul id="ul1">
<!--<li>
<strong>名字</strong> <span>2015-01-30 14:06</span>
<p>内容</p>
</li>
<li class="self">
<strong>名字</strong> <span>2015-01-30 14:06</span>
<p>内容</p>
</li>
<li class="who">xxx上线了</li>
<li class="typing">xxx 正在输入</li>
-->
</ul>
<textarea id="txt1" cols="60" rows="5"></textarea>
<input id="btn1" type="button" value="发送"/>
</div>
<script src="/socket.io/socket.io.js" type="text/javascript"></script>
<script src="index.js" type="text/javascript"></script>
</body>
</html>