-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.html
28 lines (25 loc) · 882 Bytes
/
client.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8"/>
<title>客户端测试</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
</head>
<body>
<div class="container-fluid" style="margin-top: 10px;" >
<div id="status"></div>
<br/>
<div id="content"></div>
</div>
<script src="//cdn.bootcss.com/jquery/3.1.1/jquery.min.js"></script>
<script src="//cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src='ws.js'></script>
<script>
var uid = Date.parse(new Date());
var url="ws://www.fjlmnet.com:9501?mchid="+uid;
let wss=socket.createWebSocket(url);
console.log(socket);
</script>
</body>
</html>