我正在尝试使用jQuery简单地将.alt
类添加到主article
中的备用section
块中,如下所示:
HTML5:
<section id="content" role="main">
<h1>Main Title</h1>
<article id="post-1" class="post-1 post type-post">
.. article content ..
</article>
<article id="post-2" class="post-2 post type-post">
.. article content ..
</article>
<article id="post-3" class="post-3 post type-post">
.. article content ..
</article>
</section>
jQuery的:
$('#content article:nth-child(odd)').addClass('alt');
我错过了什么......?当然这应该有用吗?!
答案 0 :(得分:0)
上面的代码确实有效,我的jQuery文件中的其他内容却抛出了问题。见上面的评论。