0

我在网页中有以下代码。我发现如果我删除了 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>
4

1 回答 1

0

我认为这可能只是你无法改变的事情。过去我在 IE 中看到过这种情况,当页面被重定向时它会停止 GIF 动画。

于 2013-02-13T23:20:15.750 回答