我需要在內部div淡出之後使'content'div生動。儘管我添加了回調,但fadeOut
動畫仍然有效。有人能告訴我在回調函數中搞砸了什麼嗎?jquery回調問題
<script type = 'text/javascript'>
$(document).ready(function() {
$('#content').click(function() {
$('#topcontent,#bottomcontent').fadeOut(400, function() {
$('#content').css({
position:'relative',
background-color:'black'
}).animate({
height:$(window).height(),
width:$(this).width()
},400);
});
});
});
</script>
</head>
<body>
<div id = 'wrapper'>
<div id = 'content'>
<div id = 'topcontent'>
TOP<br />
</div>
<div id = 'bottomcontent'>
BOTTOM
</div>
</div>
</div>
</body>
http://jsfiddle.net/3MCbe/ – biziclop
或'「背景顏色」:「黑」' - 它在導致一個不帶引號鍵連字符語法錯誤。 – nrabinowitz
它應該可能是'backgroundColor',而不僅僅是'background',因爲這是問題中使用的屬性。 –