我使用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。
答案 0 :(得分:2)
我找到了解决方案:
从popup_window.php文件中通过frame获取id。我们需要使用以下代码:
onClose: function()
{
var myIFrame = document.getElementById("MooFrame");
var content = myIFrame.contentWindow.document.getElementById('abcd').value;
alert('content: ' + content);
location.reload();
}