首页 > 代码库 > jQuery clearQueue
jQuery clearQueue
clearQueue()方法与clearQueue()方法结合;
.clearQueue()可用于删除通过.queue()方法添加到通用jQuery序列的任何函数。
示例:
<!DOCTYPE html><html><head> <style> div { margin:3px; width:40px; height:40px; position:absolute; left:0px; top:30px; background:green; display:none; } div.newcolor { background:blue; } </style> <script type="text/javascript" src="http://www.mamicode.com/jquery/jquery.js"></script></head><body><button id="start">开始</button><button id="stop">停止</button><div></div><script>$("#start").click(function () { $("div").show("slow"); $("div").animate({left:‘+=200‘},5000); $("div").queue(function () { $(this).addClass("newcolor"); $(this).dequeue(); }); $("div").animate({left:‘-=200‘},1500); $("div").queue(function () { $(this).removeClass("newcolor"); $(this).dequeue(); }); $("div").slideUp();});$("#stop").click(function () { $("div").clearQueue(); $("div").stop();});</script></body></html>
jQuery clearQueue
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。