1

我使用了 MooDialog.iframe 和 onClose 我需要一些值。但无法从该 iFrame 中获取值并希望在我在弹出窗口中打开此框架的页面中使用。

我用于弹出的功能/代码如下:

function popup_window() {
    var hostname = location.protocol + "//" + location.hostname +       (location.port && ":" + location.port) + "/";
    var opcion = "crear";
    co2=new MooDialog.IFrame(hostname+'infinity/contabilidad/cuenta%20crear/popup_window.php?action=2',
        { 
            title: 'Editar Centro','class' : 'content_edit1 MooDialog',
            onClose: function()
            {   
                /////////alert(document.getElementById('numero_cuenta').value);
//numero_cuenta is something i want
                location.reload();                                                                          
            }
        }
    );
}

numero_cuenta是弹出 iframe 的 input.text 的 id。

4

1 回答 1

2

我找到了解决方案:

从 popup_window.php 文件中通过框架按 id 获取元素。我们需要使用以下代码:

onClose: function()
{   
    var myIFrame = document.getElementById("MooFrame");
    var content = myIFrame.contentWindow.document.getElementById('abcd').value;

    alert('content: ' + content);   

    location.reload();                                                                          
}
于 2012-09-04T13:15:01.490 回答