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");
            });

私の顧客マスター Codebehind File Checking クエリ文字列で、Popup または Itself (lpopup='True') からページを識別します。

4

1 に答える 1