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 중국어 웹사이트의 기타 관련 기사를 참조하세요!