chrome新版本37中的popup问题

时间:2014-09-04 07:03:34

标签: javascript google-chrome

我无法在Chrome新版本中打开弹出窗口。 我点击一个链接打开模态对话框弹出窗口但弹出窗口没有出现。 我猜这是google chrome新版本的一个问题。

function DownloadReport() {
    window.document.getElementById("MainContent_hfRefresh").value = "True";
    showmodalDialog("../../General/DownLoad/Download.aspx", 1024, 500);
}

此代码在旧版本36中正常运行。

1 个答案:

答案 0 :(得分:0)

最后我使用jquery对话框替换window.showModalDialog(): parrent page:

            var href = "test.html"
            var obj = jQuery('#chooseTaskDlg');
            if(!obj)
                return false;
            obj.html('<iframe style="border: 0px; " src="' + href + '" width="100%" height="99%"></iframe>');
            obj.dialog({
                        autoOpen: false,
                        resizable: false,
                        height:780,
                        width:950,
                        modal: true,
                        close: function(){
                            if(undefined != dialogRet && '' != dialogRet) 
                            {
                                //do something with the string dialogRet 
                            }
                            return null;
                        }
                    });
            obj.dialog('open');

然后在子页面“test.html”中:

if (isNeedIeModalDialog())   //IE
{
    obj = window.dialogArguments;
    window.returnValue = someValue;
}
else
{
    obj = window.opener ? window.opener : parent;
    obj.dialogRet = someValue;
}
obj.document.getElementById(type + '_ipinfo').value=someValue; //do something with parrent document
closeModalWindow('chooseTaskDlg');