选择跟随jquery中当前标记的子代

时间:2014-07-30 17:13:40

标签: javascript jquery

我有一个标题后跟一个div,我想在点击h2时显示...

<h2><a href="#">Some Tag</a></h2>
<div>content here</div>

<h2><a href="#">Some  other  Tag</a></h2>
<div>content here</div>

<h2><a href="#">Some  other  Tag</a></h2>
<div>content here</div>

如何选择我点击的h2之后的div?

1 个答案:

答案 0 :(得分:0)

$('h2').click(function(e){
    $(this).next('div').toggle();
});

CSS:

div{
display:none;
}

演示:

http://jsfiddle.net/qJUQj/