0

我是使用 jQueryDialogue 和 Iframe 在当前页面内弹出外部 url 页面

var iframe = $('<iframe frameborder="0" id="FrameCust" marginwidth="0" marginheight="0" allowfullscreen></iframe>');
            var dialog = $("<div id='tempstep'></div>").append(iframe).appendTo("body").dialog({
                autoOpen: false,
                modal: true,
                resizable: false,
                width: "auto",
                height: "auto",
                close: function () {
                    iframe.attr("src", "");
                }
            });
            $("input[id$='btnAddCust']").on("click", function AddCust(e) {
                e.preventDefault();
                var src = "../MasterPages/CustomerMaster.aspx?lpopup=True";
                var title = "Customer Master";
                var width = "980";
                var height = "530";
                iframe.attr({
                    width: +width,
                    height: +height,
                    src: src
                });                    
                dialog.dialog("option", "title", title).dialog("open");
            });

在我的客户主代码隐藏文件检查查询字符串中,从弹出窗口或自身识别页面(lpopup ='True')我想在点击 PopupDialogue 内的保存按钮后关闭 PopupDialogue(在外部 URL 中)我该怎么做?

4

1 回答 1

2

您可以使用下面的代码从弹出页面后面的代码中传递父页面中的查询字符串。这也将关闭弹出窗口。

 Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "jain", "<script type='text/javascript' language='javascript'>parent.location.replace('../test.aspx?Q=123456');</script>");
于 2013-08-03T06:41:47.527 回答