10

我正在开发一个使用许多模式对话框来获取输入的 Web 应用程序。当我开始使应用程序与 IE11 兼容时,问题就开始了(它在 IE8 中运行良好)。当从主页调用时,模态对话框完美地返回值,但是当我从模态对话框创建模态对话框时,该值被返回但未被捕获并被视为undefined.

//calling the values
var ret = ShowDialogOpen(pageUrl, width, height);

function ShowDialogOpen(PageName, strWidth, strHeight) {
    var DialogOptions = "Center=Yes; Scrollbar=No; dialogWidth=" + strWidth + ";          dialogTop=150px; dialogHeight=" + strHeight + "; Help=No; Status=No; Resizable=Yes;";
    var OpenUrl = PageName; 
    var ret = window.showModalDialog(OpenUrl, "Yes", DialogOptions);
		    
    return ret;
}

//Dialog returning values
function ReturnValues() {
    var lstBox = document.getElementById("lst_Name");
    var texts = "";
    var values = "";
    for (i=0; i<lstBox.options.length; i++) {
        texts = texts + lstBox.options[i].text + "!";
        values = values + lstBox.options[i].value + "!";
    }

    window.returnValue = texts + "$" + values;
    Close();
    return false;
}

此代码在通过主页使用时可以完美运行,但是当我从模态对话框页面使用它时,它returnValue会丢失。

4

1 回答 1

6

这是 MS 最近发布的安全补丁中的一个错误:http: //blogs.msdn.com/b/ie/archive/2014/12/09/december-2014-internet-explorer-security-updates-amp-disabling -ssl-3-0-fallback.aspx

于 2014-12-15T12:35:16.257 回答