jQuery queue() 方法

实例

在 <span> 元素中显示队列的长度:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function(){
  7. $("button").click(function(){
  8. var div = $("div");
  9. div.animate({height: 300}, "slow");
  10. div.animate({width: 300}, "slow");
  11. div.animate({height: 100}, "slow");
  12. div.animate({width: 100}, "slow");
  13. $("span").text(div.queue().length);
  14. });
  15. });
  16. </script>
  17. </head>
  18. <body>
  19. <button>开始动画</button>
  20. <p>队列的长度: <span></span></p>
  21. <div style="width:50px;height:50px;position:absolute;left:10px;top:100px;background-color:red;"></div>
  22. </body>
  23. </html>

定义与用法

queue() 方法显示要在选定元素上执行的函数队列。

所谓队列是一个或多个等待运行的函数。

queue() 方法可以与 dequeue() 方法一起使用。

一个元素可以有几个队列。但通常它只有一个 "fx" 队列,这是默认的 jQuery 队列。


语法

  1. $(selector).queue(queueName)
参数描述
queueName可选。默认队列名称

默认值是 "fx", 标准队列


更多实例

将 queue(), dequeue() 与 clearQueue() 方法一起使用

如何计算队列长度+循环队列

分类导航