HTML5-websocket聊天实例代码

在传统的网页实现聊天室的方法是通过每隔一段时间请求服务器获取相关聊天信息来实现,然而html5带来的websocket功能改变这了这种方式.由于websocket在连接服务器后允许保持连接来进行数据交互,因此服务器可以主动地向客户端发送相应的数据.对于html5的处理只需要在连接创建完成后在websocket的receive事件中处理接收的数据即可.下面通过实现一个聊天室来体验一下服务器可以主动地向客户端发的功能.

  1. <!DOCTYPE html>
  2. <?php
  3. //echo $_GET[‘othername’];exit;
  4. if($_GET[‘myid’]==$_GET[‘otherid’])
  5. {
  6.     echo “<script>
  7.         alert(‘您不能和自己聊天’);
  8.         window.close();
  9.     </script>”;
  10. }
  11. ?>
  12. <html>
  13. <head>
  14. <meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />
  15. <title>网站在线聊天-客户在线交流工具</title>
  16. <input type=“hidden” id=“otherid”
  17.     value=“<?php echo $_GET[‘otherid’]?>”>
  18. <input type=“hidden” id=“othername”
  19.     value=“<?php echo $_GET[‘othername’]?>”>
  20. <input type=“hidden” id=“otherimg”
  21.     value=“<?php echo $_GET[‘otherimg’];?>”>
  22. <input type=“hidden” id=“myid” value=“<?php echo $_GET[‘myid’];?>”>
  23. <input type=“hidden” id=“myname”
  24.     value=“<?php echo $_GET[‘myname’];?>”>
  25. <input type=“hidden” id=“myimg”
  26.     value=“<?php echo $_GET[‘myimg’];?>”>
  27. <!– 查询数据库 中所有otherid的发来的离线聊天内容–>
  28. <?php
  29. $conn=mysql_connect(“192.168.1.100”,“root”,“”) or die(‘连接失败:’ . mysql_error());
  30. if(!mysql_select_db(“strategy”,$conn))
  31. {echo (‘数据库选择失败:’ . mysql_error());}
  32. mysql_query(“set names utf8”);
  33. $oid = $_GET[‘otherid’];
  34. $mid = $_GET[‘myid’];
  35. //在聊天窗口中列出未读的聊天信息
  36. $query = mysql_query(“select * from gy_chatmessage where receiverid=$oid and senderid=$mid and isscan=2 order by id asc”);
  37. //查看是否浏览过,isscan=1
  38. $isscan = isset($_GET[‘isscan’]) ? intval($_GET[‘isscan’]):;
  39. if(!empty($isscan))
  40. {
  41.     $q= mysql_query(“update gy_chatmessage set isscan=1 where receiverid=$oid and senderid=$mid “);
  42. }
  43. ?>
  44. <!–html5 websocket 通信程序–>
  45. <script type=“text/javascript”>
  46.         var ws = null;
  47.         var s=; var i=0;
  48.       var name = document.getElementById(“myname”).value;
  49.       //var myusername;
  50.         function startServer() {
  51.             // 设定WebSocket,注意协议是ws,请求是指向对应的WebSocketServlet的
  52.             //var url = “ws://192.168.1.101:8080/websocket88/websocket/echoAnnotation”;
  53.             //var url = “ws://192.168.1.101:8080/WebSocket/servlet/SocketServer”;
  54.             //var url = “ws://192.168.1.101:8080/test123/websocket/echoAnnotation”;
  55.             var url = “ws://192.168.1.109:8080/GLServer/websocket/echoAnnotation”;
  56.             // 创建WebSocket实例,下面那个MozWebSocket是Firefox的实现
  57.             if (‘WebSocket’ in window) {
  58.                 ws = new WebSocket(url);
  59.                 //alert(“new WebSocket”);
  60.             } else if (‘MozWebSocket’ in window) {
  61.                 ws = new MozWebSocket(url);
  62.             } else {
  63.                 alert(‘您好,您的浏览器版本较低,暂不支持websocket,无法使用在线聊天功能,建议升级或使用IE10、chrome、Firefox、Opera、Safari等主流浏览器’);
  64.                 window.close();
  65.                 return false;
  66.             }
  67.             // WebSocket握手完成,连接成功的回调
  68.             // 有个疑问,按理说new WebSocket的时候就会开始连接了,如果在设置onopen以前连接成功,是否还会触发这个回调
  69.             ws.onopen = function() {
  70.                 //alert(‘连接好了’);
  71.                alert(mytime()+’,您已经和对方连接成功,点击确定后开始和对方聊天’);
  72.                 var otherid = document.getElementById(“otherid”).value;
  73.                 var othername = document.getElementById(“othername”).value;
  74.                 var otherimg = document.getElementById(“otherimg”).value;
  75.                 var myid = document.getElementById(“myid”).value;
  76.                 var myname = document.getElementById(“myname”).value;
  77.                 var myimg = document.getElementById(“myimg”).value;
  78.                 //alert(username);
  79.                  ws.send(myid+“#”+myname+“#”+myimg+“#”+otherid+“#”+othername+“#”+otherimg);
  80.             };
  81.             // 收到服务器发送的文本消息, event.data表示文本内容
  82.             ws.onmessage = function(event) {
  83.             if(!i==0)
  84.             {
  85.                 //var i=”;
  86.                // i= event.data;
  87.                 //i=i.fontcolor(#FF0033);
  88.             //s = s +event.data+'<br/>’;
  89.             //s =  s+i+'<br/>’;
  90.             s =  s+'<span style=“color:red;”>’+event.data+'</span><br/>’;
  91.              //alert(‘Receive message: ‘ + s);
  92.             document.getElementById(“a”).innerHTML=s;
  93.             }else{
  94.             // name=event.data;
  95.             i++;
  96.             }
  97.             };
  98.             // 关闭WebSocket的回调
  99.                ws.onclose = function() {
  100.                //alert(‘服务器断线,本次聊天被终止!’);         
  101.                };
  102.         }
  103.         function sendMyMessage() {
  104.           //判断输入的内容是否为空
  105.           var textMessage = document.getElementById(‘textMessage’).value;
  106.         if(textMessage==)
  107.             {
  108.                 alert(‘发送内容不能为空哦’);
  109.                 return false;
  110.             }
  111.             Date.prototype.format = function(format){
  112. var o = {
  113. “M+” : this.getMonth()+1//month 
  114. “d+” : this.getDate(), //day 
  115. “h+” : this.getHours(), //hour 
  116. “m+” : this.getMinutes(), //minute 
  117. “s+” : this.getSeconds(), //second 
  118. “q+” : Math.floor((this.getMonth()+3)/3), //quarter 
  119. “S” : this.getMilliseconds() //millisecond 
  120. }
  121. if(/(y+)/.test(format)) {
  122. format = format.replace(RegExp.$1, (this.getFullYear()+“”).substr(4 – RegExp.$1.length));
  123. }
  124. for(var k in o) {
  125. if(new RegExp(“(“+ k +“)”).test(format)) {
  126. format = format.replace(RegExp.$1, RegExp.$1.length==1 ? o[k] : (“00”+ o[k]).substr((“”+ o[k]).length));
  127. }
  128. }
  129. return format;
  130. }
  131. var now = new Date();
  132. var t = now.format(“yyyy-MM-dd hh:mm:ss”);
  133. //alert(t);
  134.             textMessage = name+’&nbsp;’+t+'<br/>’+’&nbsp;&nbsp;’+textMessage
  135.             //alert(textMessage);   
  136.               s =  s + textMessage+'<br/>’;
  137.             document.getElementById(“a”).innerHTML=s;
  138.             if(ws != null && textMessage != ) {
  139.                 // 通过WebSocket想向服务器发送一个文本信息
  140.                 ws.send(textMessage);
  141.                 //清空当前textarea域的内容
  142.            document.getElementById(“textMessage”).value=;
  143.             }
  144.         }
  145.         </script>
  146. </head>
  147. <body onLoad=“startServer()”>
  148. <div id=“header”
  149.     style=“width: 100%; height: 30px; border: 1px solid #ccc; background: #FF6600; color: red”><span
  150.     style=“color: #0066FF; margin-left: 10px; line-height: 30px;”>网站webim在线聊天</span></div>
  151. <p id=“a” style=“height: 320px; width: 690px; border: 1px solid #d2d2d2; overflow-y: scroll;”>
  152. <span style=“color: #0066FF; margin:10px; margin-bottom:0px; display:block”>欢迎使用网站在线聊天系统,如果对方不在线,您可以给他留言。</span><br/>
  153. <?php
  154. while($row = mysql_fetch_array($query))
  155. {
  156. //print_r($row);
  157. echo ‘&nbsp;&nbsp’.$row[‘receiver’];
  158. echo ‘&nbsp;&nbsp’.$row[‘createtime’];
  159. echo ‘<br>’;
  160. echo ‘<br/>‘.’&nbsp;&nbsp’;
  161. echo $row[‘content’];
  162. echo ‘<br/><br/>’;
  163. }
  164. ?>
  165. </p>
  166. <div id=“mid_mid”><span style=“font-size:12px; color:#FF9900”>请在下面文本框里输入你想要聊天的内容,禁止输入#等无意义的字符和违法信息</span></div>
  167. <div class=“webim-body-content-textarea”>
  168. <input id=“textMessage”
  169.     size=“60” name=“ca” class=“webim-textarea” value=“”
  170.     onKeyDown1=“javascript:butonclick();” onFocus=“clear()” cols=“” rows=“” />
  171. <!–请在下面文本框里输入你想要聊天的内容,禁止输入#等无意义的字符和违法信息。–>
  172. </div>
  173. <div class=“webim-body-comtent-footer”>
  174. <button class=“webim-body-comtent-submit” onClick=“custom_colse()”>关闭</button>
  175. <button class=“webim-body-comtent-submit” id=“do”
  176.     onClick=“sendMyMessage()”>发送</button>
  177. <a target=“_blank” href=“#”><!–您可以直接按enter键发送内容&nbsp;&nbsp;–>webim在线聊天&gt;&gt;</a>
  178. <div id=“imjs-empty-tip” class=“webim-body-footer-tips”
  179.     style=“display: none”><s>&nbsp;</s>发送内容不能为空哦</div>
  180. <div id=“imjs-selectuser-tip” class=“webim-body-footer-tips”
  181.     style=“display: none”><s>&nbsp;</s>请您选择用户哦</div>
  182. </div>
  183. <style type=“text/css”>
  184. #mid_mid {
  185.     position: relative;
  186.     background: #f3f3f3;
  187.     height: 14px;
  188.     line-height: 14px;
  189.     padding: 6px 0 6px 0px;
  190.     width: 690px;
  191. }
  192. textarea {
  193.     width: 400px;
  194.     height: 66px;
  195. }
  196. .webim-body-content-textarea .webim-textarea {
  197.     padding: 0px;
  198.     resize: none;
  199.     width: 690px;
  200.     height: 50px;
  201.     border: 0;
  202.     font-size: 12px;
  203.     overflow-y: auto;
  204.     border: 1px solid #d2d2d2;
  205. }
  206. .webim-body-comtent-footer {
  207.     position: relative;
  208.     height: 38px;
  209.     line-height: 28px;
  210.     background: #f3f3f3;
  211.     border: 1px solid #d2d2d2;
  212.     border-left: 0;
  213.     border-right: 0;
  214.     width: 690px;
  215. }
  216. .webim-body-comtent-footer a {
  217.     text-decoration: none;
  218.     font-size: 12px;
  219. }
  220. .webim-body-comtent-submit {
  221.     cursor: pointer;
  222.     float: right;
  223.     margin: 2px 0;
  224.     margin-left: 5px;
  225.     width: 80px;
  226.     display: block;
  227.     background: #fd9603;
  228.     color: #fff;
  229.     height: 32px;
  230.     line-height: 31px;
  231.     text-align: center;
  232. }
  233. </style>
  234. <script>
  235. function butonclick()
  236. {
  237.     //点击enter键可以直接发送信息的功能
  238.     if(event.keyCode == 13)
  239.     {
  240.          //判断输入的内容是否为空
  241.           var textMessage = document.getElementById(‘textMessage’).value;
  242.         if(textMessage==)
  243.             {
  244.                 alert(‘您还没有输入内容哦’);
  245.                 return;
  246.             }
  247.         //判断是不是通过enter回车键提交
  248.         var button = document.getElementById(“do”);
  249.         button.click();
  250.         //清空当前textarea域的内容
  251.         document.getElementById(“textMessage”).value==;
  252.         return false;
  253.     }
  254. }
  255.     var a= document.getElementById(“textMessage”);
  256. function clear()
  257. {
  258.     if(a.value==’请在下面文本框里输入你想要聊天的内容,禁止输入#等无意义的字符和违法信息’)
  259.     {
  260.         a.value=;
  261.     }
  262. }
  263.  //时间
  264. function mytime(){
  265.    var now=(new Date()).getHours();
  266.     if(now>0&&now<=6)
  267.     {
  268.       return “午夜好”;
  269.     }else if(now>6&&now<=11){
  270.       return  “早上好”;
  271.     }else if(now>11&&now<=14){
  272.       return “中午好”;
  273.     }else if(now>14&&now<=18){
  274.       return “下午好”;
  275.    }else{
  276.       return “晚上好”;
  277.    }
  278. }
  279. //替换所有的回车换行   
  280. function trim2(content)
  281. {
  282.     var string = content;
  283.     try{
  284.         string=string.replace(/\r\n/g,“<br />”)
  285.         string=string.replace(/\n/g,“<br />”);
  286.     }catch(e) {
  287.         alert(e.message);
  288.     }
  289.     return string;
  290. }
  291. //替换所有的空格
  292. function trim(content)
  293. {
  294.     var string = content;
  295.     try{
  296.         string=string.replace(/ /g,“&nbsp;”)
  297.     }catch(e) {
  298.         alert(e.message);
  299.     }
  300.     return string;
  301. }
  302. //离开当前页面时js提示关闭
  303.  function custom_colse()
  304.  {
  305.     if(confirm(“您即将离开本页面,离开后无法继续与对方聊天,确定要终止本次聊天吗?”))
  306.     {
  307.         window.opener=null;
  308.         window.open(,’_self’);
  309.         window.close();
  310.         ws.send(“disconnection”);
  311.     }else{}
  312.  }
  313. </script>
  314. </body>
  315. </html>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

www.admin122.com 关注微信
24小时客服在线