我是使用 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 中)我该怎么做?