返回Dom聊天信息......登陆

Dom聊天信息的生成原理作业

7202019-05-19 23:38:481726

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style type="text/css">
            *{margin: 0; padding: 0; list-style: none;}
            ul{width: 500px;height: 400px; background: #fafafa; margin: 0; padding: 0;}
            ul li{padding: 10px;}
            div{width: 500px;height:100px; background: #eee;}
            div input{width: 360px; float: left; margin-top: 25px; margin-left: 20px;  height:50px; line-height: 50px;padding: 0 10px; border: none;}
            div button{width: 80px; margin-top: 25px; height: 50px;line-height: 50px; text-align: center; border: none; background: #ffa200; color: #fff;}
        </style>
    </head>
    <body>
        <ul>
            
        </ul>
        <div><input type="text" ><button>提交</button></div>
        <script type="text/javascript">
            let input = document.getElementsByTagName('input')[0];
            let button = document.getElementsByTagName('button')[0];
            let ul = document.getElementsByTagName('ul')[0];
            
            button.onclick = function(){
                let li = document.createElement('li');
                li.innerHTML = input.value;
                ul.appendChild(li);
                input.value='';
            }
        </script>
    </body>
</html>

最新手记推荐

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

全部回复(0)我要回复

暂无评论~
  • 取消回复发送