table 增加、删除一行

前两天项目有个需求是需要在页面中的表格增加一行连签规则的,研究了好一阵,记录下来。 $("table tr:last").after(trHTML); //这里找到


table中的最后一个tr元素 将你需要拼接的内容拼接到后面,trHTML就是你需要拼接的内容
$("table tr").length    //获取table下tr的个数
先看下效果图:【这里用到了在table中新增一行、删除一行等等的知识】 附上代码先:
<div class="mt-50">
            <button class="btn btn-primary f-r" id="search" type="button" οnclick="addRow()">新增连签积分规则</button>
            <table class="table table-border table-bordered table-hover table-bg table-sort" id="signTable">
                <thead>
                <tr class="text-c">
                    <th>奖励类型</th>
                    <th>奖励门槛(天)</th>
                    <th>积分数</th>
                    <th>操作</th>
                </tr>
                </thead>
                <tbody id="tableBody">
                <c:forEach items="${conSignRegularList}" var="items">
                    <tr class="text-c">
                        <td width="300">连续签到奖励</td>
                        <td>
                            <input type="text" id="continuousSignDay" name="continuousSignDay" class="signDay"
                                   value="${items.day}">
                        </td>
                        <td>
                            <input type="text" id="continuousSignScore" name="continuousSignScore" class="signScore"
                                   value="${items.score}">
                        </td>
                        <td>
                            <button type="button" class="btn btn-danger-outline size-MINI " οnclick="deleRow(this)">删除
                            </button>
                        </td>
                    </tr>
                </c:forEach>


                </tbody>
            </table>
        </div>




jquery操作:
 
<div class="mt-50">
            <button class="btn btn-primary f-r" id="search" type="button" οnclick="addRow()">新增连签积分规则</button>
            <table class="table table-border table-bordered table-hover table-bg table-sort" id="signTable">
                <thead>
                <tr class="text-c">
                    <th>奖励类型</th>
                    <th>奖励门槛(天)</th>
                    <th>积分数</th>
                    <th>操作</th>
                </tr>
                </thead>
                <tbody id="tableBody">
                <c:forEach items="${conSignRegularList}" var="items">
                    <tr class="text-c">
                        <td width="300">连续签到奖励</td>
                        <td>
                            <input type="text" id="continuousSignDay" name="continuousSignDay" class="signDay"
                                   value="${items.day}">
                        </td>
                        <td>
                            <input type="text" id="continuousSignScore" name="continuousSignScore" class="signScore"
                                   value="${items.score}">
                        </td>
                        <td>
                            <button type="button" class="btn btn-danger-outline size-MINI " οnclick="deleRow(this)">删除
                            </button>
                        </td>
                    </tr>
                </c:forEach>


                </tbody>
            </table>
        </div>



  

                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值