通过JavaScript关闭IFrame Popup

时间:2014-08-14 10:04:42

标签: c# javascript jquery iframe

我有一个弹出对话框。在更新后放置信息或插入我希望关闭该对话框的信息没有运气这个

aspx页面

 <div id="InnerVendorPopup" style="width: 900px; height: 420px">
        <iframe id="iframeVendor" scrolling="yes" frameborder="0" width="900px" height="420px">
        </iframe>
    </div>

母版页

 $("#InnerVendorPopup").dialog({
                height: 'auto',
                width: 920,
                title: 'Test',
                dialogClass: 'dialog_fixed',
                position: 'center',
                drag: function () {
                    $.data(this, 'dragged', true);
                },
                open: function (event, ui) {
                    $('html').css('overflow', 'hidden');
                    $('.ui-widget-overlay').width($(".ui-widget-overlay").width() + 18);
                    $.data(this, 'dragged', false);
                },
                close: function (event, ui) {
                    $('html').css('overflow', 'auto');
                    $('.ui-widget-overlay').width($(".ui-widget-overlay").width() - 18);
                }

            });

我的C#代码:

Page.ClientScript.RegisterStartupScript(this.GetType(), "myCloseScript", "closePopup();", true); 

我的Javascript代码:

<script type="text/javascript">
    closePopup = function () {
        alert("call");
        $("#InnerVendorPopup").dialog("close");
    }
</script>

我想在更新后关闭我的对话框弹出窗口或插入按钮单击

0 个答案:

没有答案