var childWindow = window.open ("test.htm", .....);
如此,便获得了子窗体的window对象。接下来,想怎么操作就随便你啦!
比如获得焦点就是childWindow.focus();
呵呵,也可以去看看我blog里面的这篇文章
http://hi.baidu.com/zh_m_zhou/blog/item/5a70a6c532d80fae8326ac74.html
有一个可以运行的简单demo
呵呵,试试吧~
var w = window.open ("test.htm", "newwindow", "height=500,outerHeight=3, width=550, toolbar= no, menubar=no, scrollbars=no, resizable=no, location=no, status=no,top=100,left=300");
w.document.write("ddd");
w就是一个test.htm的window对象,可以进行操作
test.htm中window.opener就是对父页面的引用