当前位置: 首页 > article >正文

原生JS实现聊天窗口

弹窗页面的样式

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style type="text/css">
    .talk_con {
      width: 600px;
      height: 500px;
      border: 1px solid #666;
      margin: 50px auto 0;
      background: #f9f9f9;
    }
    .talk_show {
      width: 580px;
      height: 420px;
      border: 1px solid #666;
      background: #fff;
      margin: 10px auto 0;
      overflow: auto;
    }
    .talk_input {
      width: 580px;
      margin: 10px auto 0;
    }
    .whotalk {
      width: 30px;
      height: 30px;
      float: left;
      outline: none;
    }
    .talk_word {
      width: 420px;
      height: 26px;
      padding: 0px;
      float: left;
      margin-left: 10px;
      outline: none;
      text-indent: 10px;
    }
    .talk_sub {
      width: 56px;
      height: 30px;
      float: left;
      margin-left: 10px;
    }
    .atalk {
      margin: 10px;
    }
    .atalk span {
      display: inline-block;
      background: #0181cc;
      border-radius: 10px;
      color: #fff;
      padding: 5px 10px;
    }
    .btalk {
      margin: 10px;
      text-align: right;
    }
    .btalk span {
      display: inline-block;
      background: #ef8201;
      border-radius: 10px;
      color: #fff;
      padding: 5px 10px;
    }
  </style>
  <script type="text/javascript" src="/static/assets/js/jquery-3.5.1.min.js"></script>
  <script type="text/javascript">
    window.onload = function() {
      
      $("input").keypress(function (e) {
        if(e.which == 13){//检测回车键
          //执行回车事件
          send();
        }
      });
    }

    function send(){
      var Words = document.getElementById("words");
      var Who = document.getElementById("who");
      var TalkWords = document.getElementById("talkwords");
      var TalkSub = document.getElementById("talksub");
      //定义空字符串
      var str = "";
      if (TalkWords.value == "") {
        // 消息为空时弹窗
        alert("消息不能为空");
        return;
      }
      var word = TalkWords.value
      document.getElementById("talkwords").value="";

      str = '<div class="btalk"><span>' + word + '</span></div>';
      Words.innerHTML = Words.innerHTML + str;
      add();

      $.ajax({
        url: '/AiController/query',
        type: 'post',
        data: {
          content: word,
        },
        beforeSend: function() {
          $("body").append('<div id="load" style="position:fixed;top:30%;z-index:1200;background:url(/static/admin/images/loading.gif) top center no-repeat;width:100%;height:140px;margin:auto auto;"></div>');
        },
        complete: function () {
          $("#load").remove();
        },
        success: function (res) {
          console.log(res);
          var response = res.msg;
          str = '<div class="atalk"><span>' + response + '</span></div>';
          Words.innerHTML = Words.innerHTML + str;
          add();
        }
      });

    }

    function add() {

      document.getElementById('words').scrollTop = document.getElementById('words').scrollHeight

    }

  </script>
</head>
<body>
<div class="talk_con">
  <div class="talk_show" id="words">
    <div class="atalk"><span id="asay">您好:我是您的智能小助手Hibiki</span></div>
    <div class="btalk"><span id="bsay">你好</span></div>
  </div>
  <div class="talk_input">
    <input type="text" class="whotalk" id="who" value="输入" disabled>
    <input type="text" class="talk_word" id="talkwords">
    <input type="button" value="发送" class="talk_sub" id="talksub" onclick="send()">
  </div>
</div>
</body>
</html>

在使用的页面引入按钮

<button class="pear-btn pear-btn-warming pear-btn-md" onclick="message()" title="智能小助手"><i class="layui-icon layui-icon-template"></i>
</button>
  • 用layui打开弹窗
function message(){
  layer.open({
    //layer提供了5种层类型。可传入的值有:0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)
    type:2,
    title:"智能助手",
    area: ['50%','85%'],
    content:  rootPath + "/AiController/view"
  });
}
  • 用js打开弹窗
var screenWidth = window.screen.width;
var screenHeight = window.screen.height;
var popupWidth = 1000;
var popupHeight = 600;
var left = (screenWidth - popupWidth)/2;
var top = (screenHeight - popupHeight)/2;
var popupWindow = window.open('AI.html', 'popup', 'width=' + popupWidth + ',height=' + popupHeight + ',left=' + left + ',top=' + top);

http://www.kler.cn/a/441966.html

相关文章:

  • Python数据分析案例70——基于神经网络的时间序列预测(滞后性的效果,预测中存在的问题)
  • 前沿技术趋势洞察与分析:探寻科技变革的多维密码
  • 深度学习 DAY1:RNN 神经网络及其变体网络(LSTM、GRU)
  • ImportError: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32‘ not found
  • llava 导入process报错
  • 国产编辑器EverEdit -重复行
  • 技术解决方案|复合机器人在cnc行业的上下料
  • 利用CNN与多尺度特征、注意力机制的融合实现低分辨率人脸表情识别,并给出模型介绍与代码实现
  • 【HarmonyOS NEXT】Web 组件的基础用法以及 H5 侧与原生侧的双向数据通讯
  • 校园点餐系统|Java|SSM|JSP|
  • 实景三维在城乡规划、地下管网管理和智慧城市中的应用
  • 单片机 GPIO
  • Qwen文章阅读笔记
  • 问题总结一
  • 深入探索Vue.js中的插值表达式:数据绑定的艺术
  • MapGIS 10.7大数据GIS升级!打造数据要素底座,赋能新质生产力
  • 自签名CA证书
  • 在 Linux 系统中,让 apt 使用 HTTP 代理
  • 文件上传之文件内容检测
  • 项目23:简易网络爬虫 --- 《跟着小王学Python·新手》
  • 突破时间与空间限制的富媒体百宝箱——智能工具箱:让云上内容生产更easy
  • 如何评估并持续优化AI呼入机器人的使用效果
  • ae学习笔记
  • Spring基础分析07-Spring JdbcTemplate
  • 【软件工程复习】
  • Android 解决“Could not resolve all artifacts for configuration ‘:classpath‘方法