我在网页中有以下代码。我发现如果我删除了 window.location 的 javascript,那么动画 gif 将正确显示动画,否则它总是显示为冻结。这在 IE 中不会发生。有什么解决办法吗?
<script type="text/javascript">
function Redirect() {
jQuery.fn.center = function () {
this.css("position", "absolute");
this.css("top", ($(window).height() - this.height()) / 2 + $(window).scrollTop() + "px");
this.css("left", ($(window).width() - this.width()) / 2 + $(window).scrollLeft() + "px");
return this;
}
$('#wrapperDiv').center();
$('#imgDiv').html('<img src="../Images/ajaxLoading2.gif" alt="Loading..." />');
$('#imgDiv').css("display", "block");
window.location = '<%=RedirectURL %>';
}
$(document).ready(function () {
});
</script>