模拟智能在线客服系统

Original 2019-06-07 16:51:19 277
abstract:<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>DOM实战 模拟智能在线
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>DOM实战 模拟智能在线客服系统</title>
    <style>
        div:nth-child(1){
            width: 450px;
            height: 650px;
            background-color: lightskyblue;
            margin: 30px auto;
            color: #333;
            box-shadow: 2px 2px 2px #808080;
        }
        h2{text-align:center;margin-bottom: 10px;}
        div:nth-child(2){width: 400px;height: 500px;border:4px double green;background-color: #efefef;margin: 20px auto 10px;}
        ul{list-style-type: none;line-height: 2em;overflow: hidden;padding: 15px;}
        table{width: 90%;height: 80px;margin: auto;}
        textarea{border: none;resize: none;background-color: lightyellow;}
        button{width: 60px;height: 40px;background-color: seagreen;color: white;border: none;}
        button:hover{cursor: pointer;background-color: orange;}
    </style>
</head>
<body>
<div>
    <h2>在线客服</h2>
    <div>
        <ul>
            <li>

            </li>
        </ul>
    </div>
    <table>
        <tr>
            <td align="right"><textarea name="text" id="" cols="50" rows="3"></textarea></td>
            <td align="left"><button type="button">发送</button></td>
        </tr>
    </table>
</div>

<script>
    //获取到页面中的相关元素
    let btn =document.getElementsByTagName('button')[0];
    let text = document.getElementsByName('text')[0];
    let list = document.getElementsByTagName('ul')[0];
    let sum = 0; // 计数器

    // 添加点击事件 获取用户说的内容并发送到窗口
    btn.onclick = function () {
        // 获取用户提交的内容
        if(text.value.length === 0){
            alert('是不是忘记说点什么');
            return false;   //有个知识点 : 表单提交的时候 如果函数返回 false  表单就不提交了 ,切记!
            // 1. return ;  return false  return true 都会在函数内部阻止程序的执行。

            // 2. 只有 return false 会阻止表单的提交。
        }
        let userComment = text.value; //将用户提交的内容获取并保存
        text.value = ''; // 立即将用户留言区清空

        // 创建一个li
        let li = document.createElement('li');

        // 用户头像
        let userPic = '<img src="1.jpg" width="35px;" style="border-radius: 50%;">';
        li.innerHTML = userPic +' '+ userComment;
        list.appendChild(li); // 将用户信息添加到聊天窗口中
        sum +=1;

        //设置定时器 2秒后自动回复
        setTimeout(function () {
            //自动回复信息的模板
            let info = [
                '好的亲,什么事尽管问',
                '要退款吗?稍等我确认下',
                '现在好忙,空时回复你',
                '还要等等啦,在审请了',
                '说不清楚,直接打我电话133xxxxxxxx'
            ];
            let temp = info[Math.floor(Math.random()*4)];
            let reply = document.createElement('li');
            let kefupic = '<img src="3.png" width="35px;" style="border-radius: 50%;">';
            reply.innerHTML = kefupic + ' ' + '<span style="color:red;">' + temp + '</span>';
            list.appendChild(reply);
            sum += 1;

        },2000);

        // 清空窗口 并将计数器清零
        if (sum > 10){
             list.innerHTML = '';
             sum = 0;
        }
    }
</script>
</body>
</html>


Correcting teacher:查无此人Correction time:2019-06-10 09:42:16
Teacher's summary:完成的不错。学编程,先从模仿开始,继续加油。

Release Notes

Popular Entries