JavaScript 参考手册
Window parent 属性
当打开新窗口时,在父窗口弹出警告
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> </head> <head> <script> function openWin() { window.open('', '', 'width=200,height=100'); alert(window.parent.location); } </script> </head> <body> <input type="button" value="打开窗口" onclick="openWin()"> </body> </html>
运行结果:
点击运行 »