用window.opener既可控制A页面里的元素,给你写两个简单的页面,详细的根据需要再去封装成函数调用。
A页面:
以下是引用片段: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>A</title> </head> <body> <a href="#" >点击弹出B页面</a> <hr /> <img src="" id="ShowImg"/> </body> </html> B页面: |
以下是引用片段: <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>B</title> </head> <body> <a href="#" >事件一</a> <hr /> <a href="#" >事件二</a> <hr /> <a href="#" >事件三</a> </body> </html> |