返回 在线客服聊天测...... 登陆

在线客服聊天测试

Love Never Dies.I Never Repent 2019-01-18 19:34:19 260
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>聊天信息列表</title>
<style type="text/css">
.txt{width: 425px;height: 540px;padding:10px;margin:0px auto;border:1px solid #eee;border-radius: 15px;background: pink;}
.txt-1{border:1px solid #ff6b00;border-radius: 15px;margin-bottom: 20px;width: 420px;height: 400px;box-shadow: 3px 3px 3px #ccc;background: #fff;}
input{width: 300px;height: 30px;}
button{width: 80px;height: 36px;background:blue;color: #fff;}
button:hover{background: #ff6b00;}
li{list-style: none;}
</style>
</head>
<body>
<div>
<h3>在线客服</h3>
<div>
<ul>
<li></li>
</ul>
</div>
<input type="text">
<button>发送</button>
</div>
<script>
var ul=document.getElementsByTagName('ul')[0];
var input=document.getElementsByTagName('input')[0];
var btn=document.getElementsByTagName('button')[0];
btn.onclick=function(){
var li=document.createElement('li');
li.innerHTML="<img src='new!.gif' >"+input.value;
ul.appendChild(li);
input.value="";
}
</script>
</body>
</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤 • 省市区接口说明 • 用thinkphp,后台新增栏目 • 管理员添加编辑删除 • 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消 回复 发送
  • PHP中文网