隐藏特定数字之后的所有表格行?

发布于 2024-12-14 19:48:45 字数 149 浏览 0 评论 0原文

我想编写一些代码,显示一年的完整列表,但最初只显示前 6 周(即 42 天),然后您可以单击按钮查看其余部分(无需切换) 。

我打算使用 PHP 来完成此操作,并为每个我想要隐藏的类设置一个类,我想这很好,我只是不确定是否有更有效的方法在 jQuery 中执行此操作。

I'd like to write some code where it displays a complete listing for a year, but initially only show the first 6 weeks (so, 42 days) and then you can click a button to view the rest (no need for a toggle).

I was going to do this using PHP, and setting a class on each of the ones I'd want to hide, which is fine, I guess, I just wasn't sure if there was a more efficient way of doing it in jQuery.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

太阳公公是暖光 2024-12-21 19:48:45
$("table tr:gt(5)").hide();

将隐藏所有大于第六行之后的内容。

$("table tr:gt(5)").hide();

will hide all of them after/greater than the sixth row.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文