jquery target html5标记属性

时间:2011-06-15 14:40:34

标签: jquery html5 alt

我正在尝试使用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');

我错过了什么......?当然这应该有用吗?!

1 个答案:

答案 0 :(得分:0)

上面的代码确实有效,我的jQuery文件中的其他内容却抛出了问题。见上面的评论。