這篇文章主要介紹如何使用javascript實(shí)現(xiàn)簡(jiǎn)易聊天室,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司基于分布式IDC數(shù)據(jù)中心構(gòu)建的平臺(tái)為眾多戶提供服務(wù)器托管 四川大帶寬租用 成都機(jī)柜租用 成都服務(wù)器租用。個(gè)簡(jiǎn)易的聊天室如下:
1.html代碼
<div class="content"> <div class="section"></div> <form action="#"> <textarea id="$value"></textarea> <button type="button" id="sub">發(fā)送</button> </form> </div>
2.css代碼
.content{ border-radius: 5px; border: 2px solid #cccccc; width: 500px; height: 700px; margin: 50px auto 0; overflow: hidden; } .section{ width: 500px; height: 569px; overflow-x: hidden; overflow-y: auto; border-bottom: 1px solid #cccccc; padding-top: 30px; } .section::-webkit-scrollbar{ display: none; } form{ width: 500px; height: 100px; } form textarea{ outline: none; border: none; display: block; float: left; width: 370px; height: 100px; font-size: 25px; text-align: top; line-height: 35px; resize: none; } form button{ outline: none; border: none; display: block; float: left; width: 130px; height: 100px; } form button:active{ background: #ccc; } .line{ width: 500px; overflow: hidden; } .left,.right{ height: auto; font-size: 25px; line-height: 50px; border-radius: 10px; padding: 0 10px; overflow-wrap: break-word; margin-bottom: 20px; } .left{ max-width: 400px; margin-left: 20px; float: left; background: rgb(243, 244, 245); } .right{ max-width: 400px; float: right; margin-right: 20px; background: rgb(79, 230, 49); }
3.js代碼
<script type="text/javascript"> function $(str){ if (str[0]=='.') { return document.getElementsByClassName(str.substring(1)); }else if (str[0]=='#') { return document.getElementById(str.substring(1)); }else{ return document.getElementsByTagName(str); } } //以上代碼可以單獨(dú)封裝成一個(gè)函數(shù) var count = 0; $('#sub').onclick=function(){ //當(dāng)點(diǎn)擊發(fā)送按鈕后,創(chuàng)建class名為line的盒子,來(lái)盛放聊天的內(nèi)容 var div = document.createElement('div'); div.className = 'line'; $('.section')[0].appendChild(div); var str = $('#$value').value; var p = document.createElement('p'); if (count%2==1) { p.className = 'left'; }else{ p.className = 'right'; } p.innerHTML = str; $('#$value').value = ''; div.appendChild(p); count++; } </script>
4.效果圖
以上是“如何使用javascript實(shí)現(xiàn)簡(jiǎn)易聊天室”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
當(dāng)前題目:如何使用javascript實(shí)現(xiàn)簡(jiǎn)易聊天室-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)URL:http://jinyejixie.com/article46/dpeoeg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供移動(dòng)網(wǎng)站建設(shè)、企業(yè)建站、搜索引擎優(yōu)化、商城網(wǎng)站、靜態(tài)網(wǎng)站、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容