简单的留言板

<!DOCTYPE html>

<html lang="en">

<head>

    <title>留言板</title>

    <script src="jquery-3.7.1.min.js"></script>

    <script>

    $(function(){

        $("#submit").click(function(){

            var msg = '<p>'+$("#name").val()+':'+$("#text").val()+'</p>';

            var history = $("#show").html();

            $("#show").html(msg+history);

        });


 

        $("body").on("click","#remove",function(){

               $("p").remove();

            });

        $("#toggle").click(function(){

               $("p").toggle(1000);

            });    

    });

    </script>

    <style>

        .box{

            margin: 100px auto;

            width: 600px;

            border: 1px solid #000;

            padding: 20px;

        }

       

    </style>

</head>

<body bgcolor="#E6E6FA">

   

    <div class="box" id="weibo">

    <h2>留言板</h2>

    <hr>

    <div style="border: 1px solid #000;">

        <h5>

        留言内容:

        </h5>

    <div id="show">   </div>

    </div>

    <h5>请输入你的昵称:</h5>

    <input id="name" />

    <br>

    <h5>请输入你的留言内容:</h5>

    <textarea  id="text"></textarea>

    <br>

    <br>

    <button id="submit">发言</button>

    <button id="remove">删除</button>

    <button id="toggle">隐藏/显示</button>

    </div>

</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值