jQuery清除、停止队列中剩下(未执行的函数)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery清除、停止队列中剩下(未执行的函数)</title>
<script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
//clearQueue() 清除、停止队列中剩下(未执行的函数)
$(document).ready(function(){
$("#start").click(function(){ //队列动画
$("div").animate({height:300},1500);
$("div").animate({300},1500);
$("div").animate({height:100},1500);
$("div").animate({100},1500);
});
$("#stop").click(function(){
$("div").clearQueue();
});
});
</script>
</head>
<body>

<button >
</div>

</body>
</html>