2

我正在尝试重定向到 .fancybox 的“onclose”属性上的 URL ...它确实有效。有任何想法吗?代码如下。注意:模式看起来很好,但是当用户按下顶部的“x”时......屏幕只是空白。

<script type="text/javascript">
 showModal();


          function showModal() {


            var url = document.URL;
            var popUp = '//local.meau.com/Support-Center/Service-Notifications/Search-Tips.aspx';
            var site = popUp;


            $(document).ready(function () {
                $.fancybox({
                    'width': 500,
                    'height': '55%',
                    'autoScale': false,
                    'transitionIn': 'none',
                    'transitionOut': 'none',
                    'type': 'iframe',
                    'href': site,
                    'showCloseButton': true,
                    'onClose' : function(){location.href = "http://local.meau.com/Support-Center.aspx";}

                });

            });



        }


    </script>  
4

1 回答 1

5

更新您的代码以阅读

window.location = "http://local.meau.com/Support-Center.aspx"

仔细检查您的 onClose 回调

于 2013-07-16T21:14:07.443 回答