이 글에서는 주로 QQ 채팅 메시지 표시 및 댓글 제출 기능을 구현하는 JavaScript에 대해 자세히 소개합니다. 관심 있는 친구는
QQ 채팅 메시지 표시를 참조할 수 있습니다. 댓글 제출 및 기타 구현 원칙, 구체적인 내용은 다음과 같습니다
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> * { margin: 0; padding: 0; } .bos { margin: 100px auto; width: 350px; position: relative; } .bos a { float: right; } button { position: relative; left: 301px; bottom: 0; } textarea { width: 350px; resize: none; } ul li { list-style: none; } </style> <script type="text/javascript"> window.onload = function() { var txt = document.getElementById('txt'); var btn = document.getElementsByTagName('button')[0]; var oUl = document.getElementsByTagName('ul')[0]; btn.onclick = function() { if(txt.value == '') { alert('请输入...'); return false; //结束事件******* } var newli = document.createElement('li'); //创建标签<li></li> newli.innerHTML = txt.value + '<a href = "#">删除<a>'; //oUl.appendChild(newli); //将创建标签<li></li>加到最后面 var lis = oUl.childNodes; //oUl.children oUl.insertBefore(newli, lis[0]); //将创建标签<li></li>加到最前面 txt.value = ''; //删除发出去的消息 var oA = document.getElementsByTagName('a'); for(var i = 0; i < oA.length; i++) { oA[i].onclick = function() { oUl.removeChild(this.parentNode); } } } } </script> </head> <body> <p id="box" class="bos"> <textarea name="" id="txt" cols="30" rows="10"></textarea> <button>submit</button> <ul></ul> </p> </body> </html>
위 내용은 JavaScript를 이용한 QQ 채팅 메시지 표시 및 댓글 제출 기능에 대한 자세한 코드 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!