$("#父窗口元素ID",window.parent.document).find("#man_id").val();
$(window.parent.frames["mainFrame"].document).find("#man_id").val();
取父窗口的元素方法:$(selector, window.parent.document);
那么你取父窗口的父窗口的元素就可以用:$(selector, window.parent.parent.document);
上述代码是针对frameset框架的,在frameset框架中parent表示上一级,top表示最顶级。
类似的,取其它窗口的方法大同小异
$(selector, window.top.document);
$(selector, window.opener.document);
$(selector, window.top.frames[0].document);
--------------------------------------------------------------------------------------------------
子窗口创建及父窗口与子窗口之间通信: