jQuery clearQueue相关介绍及实例讲解
程序员文章站
2022-05-03 16:18:28
...
clearQueue()方法与clearQueue()方法结合;
.clearQueue()可用于删除通过.queue()方法添加到通用jQuery序列的任何函数。
示例:
<!DOCTYPE html> <html> <head> <style> p { margin:3px; width:40px; height:40px; position:absolute; left:0px; top:30px; background:green; display:none; } p.newcolor { background:blue; } </style> <script type="text/javascript" src="/jquery/jquery.js"></script> </head> <body> <button id="start">开始</button> <button id="stop">停止</button> <p></p> <script> $("#start").click(function () { $("p").show("slow"); $("p").animate({left:'+=200'},5000); $("p").queue(function () { $(this).addClass("newcolor"); $(this).dequeue(); }); $("p").animate({left:'-=200'},1500); $("p").queue(function () { $(this).removeClass("newcolor"); $(this).dequeue(); }); $("p").slideUp(); }); $("#stop").click(function () { $("p").clearQueue(); $("p").stop(); }); </script> </body> </html>
以上就是jQuery clearQueue相关介绍及实例讲解的详细内容,更多请关注其它相关文章!
推荐阅读
-
C++中四种类型转换的关键字介绍及实例讲解
-
AJAX的实现基础讲解及Jquery的ajax的原生js代码实例
-
jquery插件datatables属性介绍及创建分页、排序实例详解
-
jQuery中first()选择器的基本介绍及实例展示
-
对jQuery.data().用法的介绍及实例讲解
-
jQuery clearQueue相关介绍及实例讲解
-
谈谈PHP中substr和substring的正确用法及相关参数的介绍_php实例
-
jQuery中first()选择器的基本介绍及实例展示
-
jQuery clearQueue相关介绍及实例讲解
-
ajax实现用户名校验的传统和jquery的$.post方式(实例讲解)_AJAX相关