我有四个“了解更多”按钮,每个按钮都有一段相关的内容。每个段落都将在开始时隐藏,然后我想要它,以便在单击其中一个按钮时显示相关内容的段落。然后,如果单击了不同的按钮,则当前显示的段落将被隐藏,并且与单击的第二个按钮相关联的内容段落会显示出来。
我无法弄清楚使用 jQuery 完成此任务的最佳方法是什么。
这是HTML:
<button class="learn-more">Learn More</button>
<button class="learn-more">Learn More</button>
<button class="learn-more">Learn More</button>
<button class="learn-more">Learn More</button>
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>
<p>Fourth paragraph</p>
这是CSS:
p {
display: none;
}
这是一个带有此代码的 JSFiddle:http: //jsfiddle.net/cYFy3/3/