返回值:jQueryclearQueue([queueName])
清空对象上的队列中所有尚未执行的项目。
-
1.4 新增clearQueue([queueName])
queueName (String) 可选参数,包含队列名称的字符串,默认值是动画效果队列fx
。
当调用 .clearQueue()
方法时,队列中所有尚未执行的函数都将被移除。如果不带参数,则 .clearQueue()
默认清空标准动画队列 fx
中剩余的函数。这个方法跟 .stop(true)
很类似。但 .stop()
方法只适用于动画,而 .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 src="jquery.min.js"></script>
</head>
<body>
<button id="start">Start</button>
<button id="stop">Stop</button>
<div></div>
<script>
$("#start").click(function () {
var myDiv = $("div");
myDiv.show("slow");
myDiv.animate({left:'+=200'},5000);
myDiv.queue(function () {
var _this = $(this);
_this.addClass("newcolor");
_this.dequeue();
});
myDiv.animate({left:'-=200'},1500);
myDiv.queue(function () {
var _this = $(this);
_this.removeClass("newcolor");
_this.dequeue();
});
myDiv.slideUp();
});
$("#stop").click(function () {
var myDiv = $("div");
myDiv.clearQueue();
myDiv.stop();
});
</script>
</body>
</html>