.dequeue()| jqueryAPI 2.2 中文手册- AspRain.cn 致力于Web开发技术翻译整理

jQuery API 2.2.0

.dequeue()

分类:效果 > 自定义效果 | 数据 | 实用工具

返回: jQuery

.dequeue( [queueName ] )

描述:针对匹配的元素,执行队列中下一个函数。

加入于: 1.2
.dequeue( [queueName ] )
  • queueName
    类型:String
    一个字符串,它包含了队列的名称。默认是fx,即标准效果队列

在调用.dequeue()时,下一个队列上的函数从队列中删除,然后被执行。该函数必须直接或间接地地导致.dequeue()被调用,从而序列可以继续下去。

示例

使用.dequeue()以结束一个自定义的队列函数,该队列函数允许队伍保持继续:

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>dequeue demo</title>
  <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="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
 
<button>Start</button>
<div></div>
 
<script>
$( "button" ).click(function() {
  $( "div" )
    .animate({ left:"+=200px" }, 2000 )
    .animate({ top:"0px" }, 600 )
    .queue(function() {
      $( this ).toggleClass( "red" ).dequeue();
    })
    .animate({ left:"10px", top:"30px" }, 700 );
});
</script>
 
</body>
</html>

演示结果

如果网页上不能运行示例,请点击http://www.asprain.cn/jQueryAPI/dequeue.htm查看示例。

如果你觉得本文档对你有用,欢迎给翻译作者支付宝打赏,支持翻译作者源源不断翻译更多有用的技术文档。