0

这是对这个问题的跟进。我的页面上有很多结构,看起来有点像这样:

<h2>
<span class="stuff">[<a href="whatever">stuff</a>]</span> <span class="moreStuff">Another test</span>
</h2>

我想在其中的每一个中“配对” the<a>和 the <h2>,例如给他们相同的班级,这样当我选择 an 时,<a>我也可以选择“corresponding” <h2>。我将如何去做(与前面的问题一样,JQuery 非常受欢迎)?

4

1 回答 1

0

第一次回答我自己的问题:我会使用这样的东西:

$("my selector").each(function(i) {
    $(this).attr("class", "pair" + i);
    $(this).closest("h2").attr("class", "pair" + i);
}
于 2012-09-21T07:18:37.873 回答