返回值:jQuerydequeue([queueName])

执行匹配元素上函数队列中的下一个函数。

当调用 .dequeue() 时,队列中的下一个函数会被移除并执行。这个执行的函数中也应当直接或间接的包含 .dequeue() 语句,这样才能继续执行队列中的其它函数,让队列可以继续下去。

示例:

在自定义队列函数中,使用 dequeue 来做结尾,以便队列可以继续运行下去。

<!DOCTYPE html>
<html>
<head>
<style>
  div { margin:3px; width:50px; position:absolute;
  height:50px; left:10px; top:30px; 
  background-color:yellow; }
  div.red { background-color:red; }  
</style>
<script src="jquery.min.js"></script>
</head>
<body>

<button>Start</button>  
<div></div>

<script>


$("button").click(function () {
  $("div").animate({left:'+=200px'}, 2000);
  $("div").animate({top:'0px'}, 600);
  $("div").queue(function () {
    $(this).toggleClass("red");
    $(this).dequeue();
  });
  $("div").animate({left:'10px', top:'30px'}, 700);
});


</script>
</body>
</html>

演示: