jQuery 添加评论

HTML代码:

<body>
    <div>
        <table style="width: 200px;" id="biao">
            <tr>
                <td>姓名</td>
                <td>评论</td>
            </tr>
        </table>
    </div>
    <div>
        <p>姓名:<input id="txt_name" type="text" /></p>
        <p>评论:<input id="txt_comment" type="text" /></p>
        <p>
            <input id="btn_add" type="button" value="添加" />
        </p>

    </div>
</body>

jQuery代码:

 <script>
        $(function () {
            //按钮的点击事件
            $("#btn_add").click(function () {
                //当姓名和评论为空时弹出窗口
                if ($("#txt_name").val() == "" || $("#txt_comment").val == "") {
                   alert("姓名、评论不能为空")
                }
                else {
                    //将txt_name和txt_comment文本框添加到表格中
                    $("#biao").append("<tr><td >" + $("#txt_name").val() + "</td><td>" + $("#txt_comment").val() + "</td></tr>");
                    //把txt_name和txt_comment文本框清空
                    $("#txt_name,#txt_comment").val("");
                }
            });


        });
    </script>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值