返回值:Arrayqueue([queueName])
显示匹配元素上将要执行的函数队列。
-
1.2 新增queue([queueName])
queueName (String) 可选参数,包含队列名称的字符串,默认值是动画效果队列fx
。
示例:
显示队列长度。
<!DOCTYPE html>
<html>
<head>
<style>div { margin:3px; width:40px; height:40px;
position:absolute; left:0px; top:60px;
background:green; display:none; }
div.newcolor { background:blue; }
p { color:red; } </style>
<script src="jquery.min.js"></script>
</head>
<body>
<button id="show">Show Length of Queue</button>
<p></p>
<div></div>
<script>
$("#show").click(function () {
var n = $("div").queue("fx");
$("p").text("Queue length is: " + n.length);
});
function runIt() {
$("div").show("slow");
$("div").animate({left:'+=200'},2000);
$("div").slideToggle(1000);
$("div").slideToggle("fast");
$("div").animate({left:'-=200'},1500);
$("div").hide("slow");
$("div").show(1200);
$("div").slideUp("normal", runIt);
}
runIt();
</script>
</body>
</html>