2 Star 1 Fork 0

mracale/workerman

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
mracale 提交于 2016-08-04 11:43 . 2016-8-4
<!DOCTYPE html>
<html>
<head>
<title>登陆界面</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://apps.bdimg.com/libs/bootstrap/3.3.0/css/bootstrap.min.css">
<script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://apps.bdimg.com/libs/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<style>
body{
margin: 0 auto;
text-align: center;
}
</style>
</head>
<body>
<input type="hidden" id="userid" value="<?php session_start();echo session_id(); ?>">
<div id="content" style="width:500px;height:200px;border:1px solid #ccc;margin:0 auto;text-align:left;overflow-y:auto;">
</div><br /><br />
<input type="text" placeholder="请输入内容" id="inputinfo"><br /><br />
<div style="display:none;">
<button type="submit" style="width:250px;" class="btn btn-default">发表</button>
</div>
<script type="text/javascript">
// 打开一个 web socket
var ws = new WebSocket("ws://192.168.18.59:8089");
ws.onopen = function(){
var userid=$("#userid").val();
// ws.send(userid);
};
ws.onmessage = function (evt){
var received_msg = evt.data;
$("#content").append(received_msg+"<br />");
var div = document.getElementById('content');
div.scrollTop = div.scrollHeight;
};
ws.onclose = function(){
alert("onclose");
};
$(".btn").click(function() {
var mydata=$("#inputinfo").val();
$("#inputinfo").val("");
$("#inputinfo").focus();
wssend(mydata);
});
function wssend(data) {
ws.send(data);
}
$(document).keydown(function(event){
if (event.keyCode==13) {
$(".btn").click();
}
});
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/zzpmracale/workerman.git
git@gitee.com:zzpmracale/workerman.git
zzpmracale
workerman
workerman
master

搜索帮助