返回值:jQueryclearQueue([queueName])

清空对象上尚未执行的所有队列。

当调用 .clearQueue() 方法时,队列中所有尚未执行的函数都将被移除。如果不带参数,则 .clearQueue() 默认清空标准动画队列 fx 中剩余的函数。这个方法跟 .stop(true). 很类似。但 .stop() 方法只适用于动画,而 .clearQueue() 则可以用于移除任何由 .queue() 方法添加的jQuery通用队列中的函数。

示例:

清空队列。

<!DOCTYPE html>
<html>
<head>
<style>
div { margin:3px; width:40px; height:40px;
    position:absolute; left:0px; top:30px; 
    background:green; display:none; }
div.newcolor { background:blue; }
</style>
<script src="jquery.min.js"></script>
</head>
<body>

<button id="start">Start</button>
<button id="stop">Stop</button>
<div></div>

<script>

$("#start").click(function () {
  $("div").show("slow");
  $("div").animate({left:'+=200'},5000);
  $("div").queue(function () {
    $(this).addClass("newcolor");
    $(this).dequeue();
  });
  $("div").animate({left:'-=200'},1500);
  $("div").queue(function () {
    $(this).removeClass("newcolor");
    $(this).dequeue();
  });
  $("div").slideUp();
});
$("#stop").click(function () {
  $("div").clearQueue();
  $("div").stop();
});

</script>
</body>
</html>
演示: