有一些东西可以隐藏网格视图中的列,但是有什么方法可以隐藏网格行并在特定操作上隐藏它们。假设单击按钮时必须隐藏第1行和第2行,而在另一行单击时,必须隐藏隐藏的行。
答案 0 :(得分:0)
隐藏行
$(document).ready(function () {
$("tr").filter(function () {
return $('td', this).length && !$('table', this).length
}).click(function () {
$(this).remove();
});
});