我能够显示网格并在网格上单击右键菜单
当我右键单击时,将打开一个带有复选框的菜单。
当我选择复选框时,应显示特定列,而其他列应消失。
我的目标是使用数据属性,但无法正常工作。
你能告诉我如何解决它吗?
在下面提供我的代码
http://jsfiddle.net/e2Lsjcx0/


   

 $("tr th[data-field='codeLong']").hide();



    if ($('input.checkbox_check').prop('checked')) {
      //blah blah
      alert("checked");

      $("tr th[data-field='codeLong']").show();
    }

最佳答案

尝试添加

$('.checkbox_check').on('click', function () {
      alert($(this).attr('checked'));
      $('th[data-field="codeLong"]').hide();
    });


更新的链接

http://jsfiddle.net/e2Lsjcx0/13/

关于javascript - 选择复选框,特定列应显示,其他列应消失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49331847/

10-10 22:18