chrome新版本中的showmodalDialog问题

时间:2014-09-14 17:08:30

标签: c# javascript google-chrome showmodaldialog

新版本中的Google Chrome删除了showmodalDialog。 并且我使用此浏览器的代码不起作用我如何解决我的问题?

function AddTime(OfferTime) {
    var x = new Array();
    var ClsPartColeg = document.getElementById("ClassParam").value;
    x[0] = SrcName(ClsPartColeg, 'PartCombo');
    if (OfferTime)
        x[1] = OfferTime;
    else
        x[1] = '$$0$' + SrcName(ClsPartColeg, 'College') + '$';
    var s = showModalDialog("../HtmlPage/ClsTime.htm", x, "status:0;help:0;dialogWidth:420px;dialogHeight:100px");
    if (s)
        Perform('NewTime;Item=' + s);
}

1 个答案:

答案 0 :(得分:0)

您有两种选择:

1-使用jQuery软模式插件,使用iframe显示模态URL并添加阻止层以防止用户与父页面交互

2-使用window.open打开您的模态并使用onbluronload将焦点放在模态页面上,直到用户关闭它

<body onblur="self.focus()" onload="self.focus()">   

第二种方法很烦人,我不建议