首页 > 代码库 > jquery 中使用slideDown(),怎么避免动画重复??

jquery 中使用slideDown(),怎么避免动画重复??

$(".list-box-item").hover(function(){
var $this = $(this);
$this.find(".cur-hover").stop(true, false).slideDown(300);
},function(){
var $this = $(this);
$this.find(".cur-hover").stop(true, false).slideUp(300);
});

jquery 中使用slideDown(),怎么避免动画重复??