我有一个标题后跟一个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?
答案 0 :(得分:0)
$('h2').click(function(e){
$(this).next('div').toggle();
});
CSS:
div{
display:none;
}
演示: