1. 程式人生 > 程式設計 >jQuery編寫QQ簡易聊天框

jQuery編寫QQ簡易聊天框

本文例項為大家分享了jQuery編寫QQ簡易聊天框的具體程式碼,供大家參考,具體內容如下

jQuery編寫QQ簡易聊天框

<!DOCTYPE html>
<html>
<head lang="en">
 <meta charset="UTF-8">
 <title>QQ簡易聊天框</title>
 <link rel="stylesheet" href="css/chat.css" >
 <style type="text/css">
 .chatBody ul li{ list-style-type:none;}
 .chatBody ul li img{ width:35px; height:33px; float:left;}
 .chatBody ul li h1{width:395px; text-indent:0px; margin-left:6px;float:left; font-size:15px; font-weight:normal;}
 .chatBody ul li p{width:385px; text-indent:5px; margin:0px 10px 0px 6px; border-radius:5px; height:30px; line-height:30px;font-size:14px; float:left; background:#CCC}
 </style>
 <script type="text/javascript" src="js/jquery-1.12.4.js"></script>
 <script type="text/javascript">
 $(document).ready(function() {
     //點擊發送
    $("#send").click(function(){
  qqQend();
 }); 
 $(document).keydown(function(event){
 if(event.keyCode=="13"){//按下回車鍵
 qqQend();
 }
 });
 
 function qqQend(){
 var $text=$(".chatText").val();//獲取輸入框內容
 if($text==""){
 alert("請輸入聊天內容");
 }else{ 
 var tou=new Array(1,2,3);
 var names=new Array("時尚依人","鬆鬆","六月奇蹟");
 var r=parseInt(Math.random()*tou.length);
 var touPath="images/head0"+tou[r]+".jpg";//頭像路徑
 $name=names[r];//人物暱稱  
 //1、建立li
 $li=$("<li></li>");
 //2、建立img
 var $img=$("<img src="+touPath+" />");
 $li.append($img);
 //3、建立h1
 var $h1=("<h1>"+$name+"</h1>");
 $li.append($h1);
 //4、建立p
 var $p=$("<p>"+$text+"</p>");
 $li.append($p);
 //5、把li新增到 <div class="chatBody"><ul></ul></div>中
 $(".chatBody ul").append($li);
      $(".chatText").val('');//清空輸入框 
 }
 }
 });
 </script>
</head>
<body>
<section id="chat">
 <div class="chatBody"><ul></ul></div>
 <div><img src="images/icon.jpg"></div>
 <textarea class="chatText"></textarea>
 <div class="btn"><span>關閉(C)</span><span id="send">傳送(S)</span></div>
</section>
</body>
</html> 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。