【JS功能】JavaScript实现简易聊天对话框

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>聊天对话框</title>
    <style type="text/css">
      * {
        font-size: 14px;
        padding: 0;
        margin: 0;
      }
      .main {
        position: relative;
        margin: 20px auto;
        border: 1px solid steelblue;
        width: 430px;
        height: 400px;
      }
      .msgInput {
        display: block;
        width: 406px;
        height: 60px;
        margin: 10px auto;
      }
      .sendbtn {
        position: absolute;
        width: 100px;
        height: 29px;
        bottom: 5px;
        right: 10px;
      }
      .content {
        list-style: none;
        width: 410px;
        height: 280px;
        margin: 5px auto;
        border: 1px dotted #d1d3d6;
        overflow-y: scroll;
      }
      .msgContent {
        width: auto;
        max-width: 250px;
        height: auto;
        word-break: break-all;
        margin: 5px;
        padding: 3px;
        border-radius: 5px;
      }

      .content .left {
        float: left;
        text-align: left;
        background-color: lightgrey;
      }
      .content .right {
        float: right;
        text-align: right;
        background-color: yellowgreen;
      }
    </style>
    <script type="text/javascript">
      window.onload = function () {
        //		li.scrollIntoView();//将元素滚动到可见位置
      };
    </script>
  </head>

  <body>
    <div id="main" class="main">
      <ul id="content" class="content">
        <li class="msgContent left">hello?</li>
        <div style="clear: both"></div>
        <li class="msgContent left">hello</li>
        <div style="clear: both"></div>
        <li class="msgContent right">hi</li>
        <div style="clear: both"></div>
        <li class="msgContent left">hehe</li>
        <div style="clear: both"></div>
        <li class="msgContent left">goodbye</li>
        <div style="clear: both"></div>
        <li class="msgContent right">。。。。</li>
        <div style="clear: both"></div>
        <li class="msgContent right">
          sdfasdsadfassdfsdfsdfdsfsdfsdfsdfdfasdffasdfasfdasd fasd fasd
          fasdfasdfasdf
        </li>
        <div style="clear: both"></div>

        <li class="msgContent right">aaa</li>
        <div style="clear: both"></div>
      </ul>
      <textarea id="msg_input" class="msgInput"></textarea>
      <button id="sendbtn" class="sendbtn">发送</button>
    </div>

    <script>
      /* 
			1- 找到元素
			2- 给btn添加点击事件,
			3- 点击的时候获取输入框的值,
			根据值创建 li和div 添加到ul里面
		 */
      //  1
      let sendbtn = document.querySelector("#sendbtn");
      let msg_input = document.querySelector("#msg_input");
      let content = document.querySelector("#content");

      //2
      sendbtn.onclick = function () {
        sendMsg();
      };

      document.onkeydown = function (evt) {
        if (evt.keyCode == 13 && evt.ctrlKey) {
          //ctrl a
          sendMsg();
        }
      };

      function sendMsg() {
        let str = msg_input.value;
        console.log(str);
        //3
        let newLi = document.createElement("li");
        newLi.innerHTML = str;
        content.appendChild(newLi);
        newLi.className = "msgContent right";

        let oDiv = document.createElement("div");
        oDiv.style.clear = "both";
        content.appendChild(oDiv);

        newLi.scrollIntoView();
        msg_input.value = "";
      }
    </script>
  </body>
</html>

  • 3
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

旺旺大力包

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值