dequeue([queueName])

2018-02-24 15:14 更新

返回值:jQuerydequeue([queueName])

概述

從隊(duì)列最前端移除一個(gè)隊(duì)列函數(shù),并執(zhí)行他。

參數(shù)

[queueName]StringV1.2

隊(duì)列名,默認(rèn)為fx

示例

描述:

使用 dequeue() 終止一個(gè)自定義的隊(duì)列函數(shù)

jQuery 代碼:
$("div").queue(function () {
  $(this).toggleClass("red");
  $(this).dequeue();
});

描述:

用dequeue來結(jié)束自定義隊(duì)列函數(shù),并讓隊(duì)列繼續(xù)進(jìn)行下去。

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);
  });
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)