1

我正在使用fancybox,在提交表单后,我想将我的父页面重定向到某个指定的网址,我正在使用fancybox,如下所示

$(document).ready(function () {
            $('[id*=addnewRequest]').fancybox({
                'width': 760,
                'height': 540,
                'padding': 0,
                'margin': 0,
                'hideOnOverlayClick': false,
                'scrolling': 'auto',
                'autoScale': false,
                'transitionIn': 'none',
                'transitionOut': 'none',
                'type': 'iframe',
                'centerOnScroll': true,
                'onClosed': function () {

                    if ($.redirTo != null && $.redirTo.length > 0){

                        window.location.replace($.redirTo);
                    }

                    else {
                        parent.location.reload(true);
                    }
                }
            });
        });

在提交我的表单后,我正在使用下面的注册脚本,其中“redirectTo”是我希望我的父页面重定向的 url

ScriptManager.RegisterStartupScript(this.Page, typeof(Page), "add", "parent.jQuery.redirTo='" + redirectTo + "'; parent.jQuery.fancybox.close();", true);

现在我的父页面将如何重定向到特定的 url。知道吗?

谢谢,

4

1 回答 1

2

提交表单后,您可以window.top.location.href使用新的 url 直接调用:

window.top.location.href = "http://www.urltogo.com/pagetomove.aspx";

并避免在父节点上发送参数并从那里进行重定向。

这是一个示例(我添加了 5 秒延迟以便有时间查看)

http://jsfiddle.net/u6whQ/3/http://jsfiddle.net/u6whQ/4/

您的线路可能如下:

ScriptManager.RegisterStartupScript(this.Page, typeof(Page), "add", "window.top.location.href ='" + redirectTo + "'; parent.jQuery.fancybox.close();", true);
于 2013-01-02T12:18:49.057 回答