我试图修改代码:
<script type="text/javascript">
$(function() {
$('#accordion > li').hover(
function () {
var $this = $(this);
$this.stop().animate({'height':'400px'},500);
$('.description',$this).stop(true,true).fadeIn();
},
function () {
var $this = $(this);
$this.stop().animate({'height':'39px'},1000);
$('.description',$this).stop(true,true).fadeOut(500);
}
);
});
</script>
这样我就可以制作出我成功的垂直手风琴了。但我想手风琴在链接上单击(选择)时停止。请帮忙