没有看明白你到底知从哪里往哪里传其实在你谈出的时候,在父窗口使用subwin=window.open("xxx.xx","","width=....");父窗口就可以通过subwin应用子窗口,如:subwin.form.username.value=this.form.username.value;//父向子传在子窗口中,可以通过this.opener引用父窗口,如this.opener.form.username.value=this.form.username.value;//子向父传至于提交,可以使用button的onclick事件,如<input type=button onclick="submitform()">