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="/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>?
更多專業前端知識,請上 【猿2048】www.mk2048.com
總結
以上是生活随笔為你收集整理的jQuery clearQueue的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: jquery ready方法实现原理
- 下一篇: jQuery函数的等价原生函数代码示例