当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery jQuery.dequeue()用法及代码示例


用法
jQuery.dequeue( element [, queueName ] ) => undefined

说明:对匹配元素执行队列中的下一个函数。

  • 添加的版本:1.3jQuery.dequeue( element [, queueName ] )

    • element
      类型:Element
      一个 DOM 元素,从中删除和执行排队的函数。
    • queueName
      类型:String
      包含队列名称的字符串。默认为 fx ,标准效果队列。

注意:这是一种低级方法,您可能应该使用.dequeue()反而。

jQuery.dequeue()被调用时,队列中的下一个函数从队列中移除,然后执行。该函数应反过来(直接或间接)导致调用jQuery.dequeue(),以便序列可以继续。

例子:

使用 jQuery.dequeue() 结束自定义队列函数,该函数允许队列继续运行。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery.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-3.5.0.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( this );
    })
    .animate({ left:'10px', top:'30px' }, 700 );
});
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 jQuery.dequeue()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。