$("button").click(function(){
if(!$('#mover').is(":animated")){ //判断元素是否正处于动画状态//如果当前没有进行动画,则添加新动画
$('#mover').fadeToggle("slow", animateIt2);
}else{
$('#mover').stop();
}
});
$("button").click(function(){
if(!$('#mover').is(":animated")){ //判断元素是否正处于动画状态