Web ページに次のコードがあります。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>