标签: jquery css hide rows css-tables
我正在构建一个需要隐藏连续行的应用。目前我正在使用它:
#mytable tr.collpaserow + tr, #mytable tr.collpaserow + tr + tr, #mytable tr.collpaserow + tr + tr + tr { display: none; }
这允许我最多隐藏3个连续的行。我想要的是用Jquery隐藏所有可能的连续行。
答案 0 :(得分:3)
你能试试吗?
$(".collpaserow").nextAll().hide();
http://api.jquery.com/nextAll/