点击table中的一行选中checkbox,并改变该行的颜色

首先规定一个选中时的样式:

.bgRed{
    background-color: #b2dba1;
}

table的代码如下:

<table>
    <tr>
        <th><input type="checkbox" id="checkAll"> 序号</th>
        <th>所属机构</th>
        <th>姓名</th>
        <th>手机号码</th>
    </tr>
        <td ><input type="checkbox" name="_dataCheckBox">1</td>
        <td>山东</td>
        <td>张三</td>
        <td>15689547865</td>
    </tr>
</table>

首先实现全选按钮功能:

$("#checkAll").click(function () {
    if ($('#checkAll').attr('checked')) {
        $("[name='_dataCheckBox']").prop("checked", 'true');//全选
        $("[name='_dataCheckBox']").each(function () {
            $(this).parent().parent().toggleClass("bgRed");//添加选中样式
        });
    } else {
        $("[name='_dataCheckBox']").removeAttr("checked");//取消全选
        $("[name='_dataCheckBox']").each(function () {
            $(this).parent().parent().toggleClass("bgRed");//取消选中样式
        });
    }
});

实现点击一行选中checkbox,并改变这一行的样式:

//除了表头(第一行)以外所有的行添加click事件.
$("tr").first().nextAll().click(function () {
    //如果没有某个样式则加上,否则去除
    $(this).children().toggleClass("bgRed");
    if ($(this).children().hasClass("bgRed")){//如果有某个样式则表明,这一行已经被选中
        $(this).children().first().children().attr("checked", true);
    } else {                                  //如果没有被选中
        $(this).children().first().children().attr("checked", false);
    }
});
当你在 Bootstrap Table 添加复选框列时,可以使用 `getSelections` 方法获取所有选中的行数据,包括复选框列。以下是一个示例: ```html <table id="table" data-toggle="table" data-url="data.json" data-checkbox="true"> <thead> <tr> <th data-field="state" data-checkbox="true"></th> <th data-field="id">ID</th> <th data-field="name">Name</th> <th data-field="price">Price</th> </tr> </thead> </table> <button id="btn">Get selected row</button> ``` 这个示例,我们在表格添加了一个复选框列,并在页面添加了一个按钮。当用户点击按钮时,我们将获取选中的行数据并输出到控制台。 ```javascript $('#btn').click(function() { var selections = $('#table').bootstrapTable('getSelections'); console.log('Selected rows:', selections); }); ``` 这段代码,我们使用 `getSelections` 方法获取所有选中的行数据,并将其输出到控制台。 注意,复选框列的选中状态并不会影响行数据的获取,所以无需特别处理复选框列。如果需要,你可以在行数据添加一个 `checkbox` 属性,用于标识该行是否被选中。以下是一个示例: ```javascript $('#btn').click(function() { var selections = $('#table').bootstrapTable('getSelections'); for (var i = 0; i < selections.length; i++) { selections[i].checkbox = true; } console.log('Selected rows:', selections); }); ``` 这段代码,我们遍历选中行数据的数组,并为每个行数据添加一个 `checkbox` 属性,用于标识该行是否被选中
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值