我的 HTML 看起来像
<h3><a href="#" title="story title">Story Title</a>
<img class="expandstory" src="/images/plus.png" /></h3>
<div class="description">Short description about the story</div>
我需要 jquery,当用户单击 expandstory 图像时,它将扩展描述。
我用了`
$(".expandstory").click(function() {
$(".description").slideUp(500);
$(this).nextAll('.description:first').slideToggle(500);
}`
但没有用。请给我一个解决方案。提前致谢。