在iframe

时间:2016-06-10 09:14:21

标签: javascript asp.net iframe parameters fancybox

我通过该代码完成关闭过程。

ScriptManager.RegisterStartupScript(this, GetType(), "", "parent.$.fancybox.close();", true);

没问题它的工作但我只想在点击按钮时刷新父页面。

现在父页总是刷新。

iframe关闭时如何将参数传递给父页面。因为我想控制刷新。

在父页面的fancbox代码中:

$(".various").fancybox({
                    maxWidth: 850,
                    maxHeight: 650,
                    fitToView: false,
                    width: '70%',
                    height: '70%',
                    autoSize: false,
                    closeClick: false,
                    openEffect: 'none',
                    closeEffect: 'none',
                    afterClose: function () { 
                    parent.location.reload(true);
                }
                });

forexample

                    afterClose: function () { 

//if (parameterFromIframe==1) {

                    parent.location.reload(true);

//}

                }

感谢您的帮助

0 个答案:

没有答案