©
Dokumen ini menggunakanManual laman web PHP CinaLepaskan
从队列最前端移除一个队列函数,并执行他。
队列名,默认为fx
使用 dequeue() 终止一个自定义的队列函数
$("div").queue(function () { $(this).toggleClass("red"); $(this).dequeue(); });
用dequeue来结束自定义队列函数,并让队列继续进行下去。
$("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); });