ホームページ > 記事 > ウェブフロントエンド > jQuery clearQueue関連の紹介と例
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関連の紹介と例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。