我<section>
在班级的一页上有 3 个 s,.slider
其中有几个<article>
s。为了使这些作为选项卡式内容工作,我想使用 jQuery 来隐藏除了这些<article>
s 中的第一个之外的所有内容。
以下:
$(".slider > article:not(:first)").hide();
隐藏除了第一个之外的所有内容<article>
,<section>
我需要它遍历三个<section>
s 并隐藏每个中的第一个。我假设我需要使用each()
来遍历它们,但我无法使任何工作。