单击表行以使用 jQuery 选择复选框 [英] Click table rows to select checkbox using jQuery

查看:12
本文介绍了单击表行以使用 jQuery 选择复选框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

因为我之前没有发现任何关于如何在单击表格行时切换复选框的问题,所以我想分享我的方法...

As I didn't find any question asked before, on how to toggle checkbox on click of a table row, so I would like to share my approach to this...

推荐答案

为了选中表格内某行的复选框,我们首先要检查type attribute

In order to select the checkbox of a row inside the table, we will first check whether the type attribute of the element we are targetting is not a checkbox if it's not a checkbox than we will check all the checkboxes nested inside that table row.

$(document).ready(function() {
  $('.record_table tr').click(function(event) {
    if (event.target.type !== 'checkbox') {
      $(':checkbox', this).trigger('click');
    }
  });
});

演示

如果您想突出显示 checkbox checked 上的表格行,那么我们可以使用 if 条件和 is(":检查"),如果是,则使用 .closest() 找到最接近的 tr 元素,然后使用 addClass() 添加类

If you want to highlight the table row on checkbox checked than we can use an if condition with is(":checked"), if yes than we find the closest tr element using .closest() and than we add class to it using addClass()

$("input[type='checkbox']").change(function (e) {
    if ($(this).is(":checked")) { //If the checkbox is checked
        $(this).closest('tr').addClass("highlight_row"); 
        //Add class on checkbox checked
    } else {
        $(this).closest('tr').removeClass("highlight_row");
        //Remove class on checkbox uncheck
    }
});

演示

这篇关于单击表行以使用 jQuery 选择复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆