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

jQuery API 2.2.0

.clearQueue()

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

返回: jQuery

.clearQueue( [queueName ] )

描述:从队列中删除所有还没有运行过的项目。

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

如果调用了.clearQueue()方法,所有的队列中的还没有执行的函数将从队列中删除。如果使用时不带参数,.clearQueue()会从fx队列,即标准效果队列中删除剩余的函数。这个方法近似于.stop(true)。然而,.stop()方法意味着只用于动画,与此同时.clearQueue()方法可以用于删除所有的用.queue()方法添加到一般jQuery数列中的函数。

示例

清空队列。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>clearQueue demo</title>
  <style>
  div {
    margin: 3px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0px;
    top: 30px;
    background: green;
    display: none;
  }
  div.newcolor {
    background: blue;
  }
  </style>
  <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
 
<button id="start">Start</button>
<button id="stop">Stop</button>
<div></div>
 
<script>
$( "#start" ).click(function() {
  var myDiv = $( "div" );
  myDiv.show( "slow" );
  myDiv.animate({
    left:"+=200"
  }, 5000 );
 
  myDiv.queue(function() {
    var that = $( this );
    that.addClass( "newcolor" );
    that.dequeue();
  });
 
  myDiv.animate({
    left:"-=200"
  }, 1500 );
  myDiv.queue(function() {
    var that = $( this );
    that.removeClass( "newcolor" );
    that.dequeue();
  });
  myDiv.slideUp();
});
 
$( "#stop" ).click(function() {
  var myDiv = $( "div" );
  myDiv.clearQueue();
  myDiv.stop();
});
</script>
 
</body>
</html>

演示结果

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

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