本文實例講述了jQuery中clearQueue()方法用法。分享給大家供大家參考。具體分析如下:
此方法能夠清空對象上尚未執行的所有隊列。
如果不帶參數,則默認清空的是動畫隊列。這跟stop(true)類似,但stop()只能清空動畫隊列,而這個可以清空所有通過queue()創建的隊列。
語法結構:
代碼如下:$(selector).clearQueue(queueName)
參數列表:
參數
描述
queueName
可選。定義要停止的隊列的名稱。
默認是 "fx",動畫隊列。
實例代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<style type="text/css">
#father
{
background:#060;
width:300px;
height:300px;
}
#box
{
background:red;
height:50px;
width:50px;
position:relative
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#start").click(function(){
$("#box").animate({height:200},"slow");
$("#box").animate({width:200},"slow");
$("#box").animate({height:50},"slow");
$("#box").animate({width:50},"slow");
});
$("#clear").click(function(){
$("#box").clearQueue();
});
});
</script>
</head>
<body>
<p>
<button id="start">開始執行動畫</button>
<button id="clear">清除隊列</button>
</p>
<div id="father">
<div id="box"></div>
</div>
</body>
</html>
希望本文所述對大家的jquery程序設計有所幫助。