如何使用jquery隐藏嵌套网格中的主网格列?
我在两个子网格中有一个主网格,我只想隐藏主网格中的列。不需要从子网格中隐藏它
答案 0 :(得分:0)
搞定了
$('#gvSalesInvoiceSearch>tbody> tr').each(function () { if (i != 2) { $(item).children("th:eq(" + i + "), td:eq(" + i + ")").hide(); } var a = $(item).children("td:eq(" + i + ")").text(); if (a == "Total") { $(this).hide(); } });