function runComplete() {
var $elem=$(document.getElementById('quiz_section'));
var center="<br /><h1>Your Score:</h1><h2>"+document.getElementById('quiz_score').innerHTML+"</h2><br /><br /><br /><a href='javascript:location.reload(true)'><h5>Try Again?</h5></a>";
$elem.html('<form id="comp" style="width:33.333333%;height:1px;background-color:lightblue;border=1px solid #000000;pading:10px">'+center+'</form>');
var theight=$elem.height()+20;
$elem.css('height','1px');
$elem.animate({height:theight});
}
在IE中,上面的代码运行得很好!在Chrome中...呃......没那么多。
它应该为表单设置动画并使其“掉落”,相反,它不会调整它的大小。我在我的代码的其他位置使用了一种非常相似的技术(相同的动画),它在Chrome中运行得很好,这是唯一没有动画的东西。有什么想法吗?
以下是测验的演示:
答案 0 :(得分:2)
您应该致电$elem.hide().slideDown()
。
答案 1 :(得分:2)