我使用了 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。