计算可见元素

时间:2018-02-12 11:30:28

标签: javascript jquery html datatables

我有一个带过滤器的表。问题是当过滤器阻止表显示tr行时,它应该显示一条消息,表示没有行。

如何检查表格中是否没有任何可见行?基本上如果它是0我想在表emptyTable: "There are no test cases of the selected type."上显示一条消息。 我正在使用数据表。

function changeTableOnType() {
    var type = $('#type').val();
    if(type !== 'All') {
        $('tbody tr').hide();
        $('.' + type).closest('tr').show();
    }
    else {
        $('tbody tr').show();
    }

}

1 个答案:

答案 0 :(得分:0)

使用:visible选择器

taskkill.exe /F /IM IEDriverServer.exe /T