如何在window.open关闭后执行js函数
用的是window.open,需要在关闭后执行一个js方法
由于弹出的界面上需要通过流下载文件所以用的是window.open,
用window.showmodaldialog下载不了文件
在打开的窗口的unload事件中写代码呗。
<html> <head> <script type="text/javascript"> function open_win() { window.open("open.html") } function test(){ alert("parent"); } </script> </head> <body> <form> <input type=button value="打开窗口" onclick="open_win()"> </form> </body> </html>
XML/HTML code?<html> <head> <script type="text/javascript"> function test(){ alert("close"); } </script> </head> <body onunload="window.opener.test()" onbeforeunload ="test()"> <form> </form> </body> </html>