我在这里试图实现的要点是有一个文章列表,其中标题是可点击的,并且可以通过 jQuery 扩展和 div 类。就目前而言,它的工作原理是同时将这种效果应用于所有事物,但这显然是不希望的。
这是jQuery:
$(function() {
$("a.expand").click(function(event) {
event.preventDefault();
$(".remainder").slideToggle("fast");
});
});
CSS:
a.expand {}
.remainder {
display: none;
}
XHTML:
<ul class="shows">
<li class="show">
<div class="showInfo alignLeft">
<h3><a href="" class="expand">Some Band @ Some Venue</a></h3>
</div>
<div class="showDate alignRight"><h3>00/00/0000</h3></div>
<div class="clear"></div>
<div id="1" class="remainder">
w/ Some Other Band. Cover is $ and doors are at 00:00.
</div>
</li>
</ul>
任何帮助都会很棒。提前致谢。