我需要在内部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',因为这是问题中使用的属性。 –