websocket 增加多分组 fork https://github.com/olahol/melody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
591 B
32 lines
591 B
<html>
|
|
<head>
|
|
<title>Melody example: file watching</title>
|
|
</head>
|
|
|
|
<style>
|
|
#file {
|
|
text-align: left;
|
|
background: #f1f1f1;
|
|
width: 500px;
|
|
min-height: 300px;
|
|
padding: 20px;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<center>
|
|
<h3>Watching a file</h3>
|
|
<pre id="file"></pre>
|
|
</center>
|
|
|
|
<script>
|
|
var url = 'ws://' + window.location.host + '/ws';
|
|
var c = new WebSocket(url);
|
|
|
|
c.onmessage = function(msg){
|
|
var el = document.getElementById("file");
|
|
el.innerText = msg.data;
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|