Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个需要隐藏连续行的应用程序。目前我正在使用这个:
#mytable tr.collpaserow + tr, #mytable tr.collpaserow + tr + tr, #mytable tr.collpaserow + tr + tr + tr { display: none; }
这使我可以隐藏多达 3 个连续的行。我想要的是隐藏所有可能的连续行,无论 Jquery 的深度如何。
你能试试这个吗?
$(".collpaserow").nextAll().hide();
http://api.jquery.com/nextAll/