返回值:jQuerydequeue([queueName])
jQuery dequeue() 方法概述
從隊列最前端移除一個隊列函數(shù),并執(zhí)行他。
參數(shù)
[queueName]StringV1.2
隊列名,默認為fx
示例
描述:
使用 dequeue() 終止一個自定義的隊列函數(shù)
jQuery 代碼:
$("div").queue(function () {
$(this).toggleClass("red");
$(this).dequeue();
});
描述:
用dequeue來結束自定義隊列函數(shù),并讓隊列繼續(xù)進行下去。
HTML 代碼:
<style>
div { margin:3px; width:50px; position:absolute;
height:50px; left:10px; top:30px;
background-color:yellow; }
div.red { background-color:red; }
</style>
<button>Start</button>
<div></div>
jQuery 代碼:
$("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);
});