我正在创建一个常见问题解答页面,通过单击问题来切换答案。问题是h3
,答案是几个p
元素。像这样:
<h3>The First Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<h3>The Second Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
如何切换p
属于某个问题的所有元素?我的 JS 在页面上切换所有以下p
元素:
$(document).ready(function(){
$("p").hide();
$("h3").click(function(){
$(this).nextAll("p").toggle();
});
});
我不能使用div
's 或类)。