我只寫了下面的代碼。點擊按鈕後,3個容器應該開始無限閃爍,但閃爍在一段時間後停止。我還沒有弄清楚爲什麼。任何想法?動畫停止後,而
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="js/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function(){
$("#btn").click(function(){
Do();
})
});
function Do(){
$(".container").fadeOut("slow",function(){
$(this).fadeIn("slow",function(){Do();});
});
}
</script>
<style type="text/css">
.container{
background: yellow;
width: 200px;
height: 50px;
font-size: 20px;
}
</style>
</head>
<body>
<button type="button" id="btn">Push Me</button>
<div id="container" class="container">
Hello
</div>
<div id="container2" class="container">
Hello
</div>
<div id="container3" class="container">
Hello
</div>
</body>
</html>
奇怪的行爲確實如此。爲那些想玩它的人準備的小提琴。 http://jsfiddle.net/Q9rKc/ –
它引發一個Uncaught RangeError:最大調用堆棧大小超過 –
你可以嘗試調用函數Do()與每個.container像這樣[http://jsfiddle.net/Q9rKc/2 /](http://jsfiddle.net/Q9rKc/2/) –