根据从ajax加载的表

时间:2016-07-13 12:01:41

标签: javascript jquery twitter-bootstrap checkbox

我有一个由ajax调用加载的表 在ajax停止

        ajaxStop: function () {

        $.each($("input[class='check']:checkbox:not(:checked)"), function ()  {  // i think as i am using vsn4ik bootstrap checkbox my expression should be different
            debugger;
            var column = "table ." + $(this).attr("name");
            $(column).toggle();
            $.fn.dataTableExt.oApi.fnFixedWidthCellTruncation;
            var search1 = $("#grid-selection").dataTable();

            search1.fnAdjustColumnSizing();

 }

我根据bootstrap-checkbox的值禁用列,其中一些是

    <input type="checkbox" class="check"  name="HELO" data-group-cls="btn-group-xs">&nbsp;hello

    <input type="checkbox" class="check"  name="HELO1" data-group-cls="btn-group-xs">&nbsp;hello1


    <input type="checkbox" class="check"  name="HELO2" data-group-cls="btn-group-xs">&nbsp;hello2

默认情况下不会选中这些复选框,所以我需要访问这些复选框,所以我使用相同的类名来访问它们但我觉得这个表达式有问题,因为它无法获得那些复选框没检查过      输入[类= '检查']:复选框:否(:选中)

0 个答案:

没有答案