parent.html
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
- <title>子窗口傳值給父窗口</title>
- </script>
- </head>
- <body>
- <input type="text" id="text1" />
- <input type="button" value="Go" onclick="openIt()" />
- </body>
- </html>
child.html
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
- <title>子窗口傳值給父窗口</title>
- <script language="JavaScript" type="text/javascript">
- function goback(obj){
- window.opener.document.getElementById("text1").value = obj.value;
- window.close();
- }
- </script>
- </head>
- <body>
- <div><input type="button" value="sucre" onclick="goback(this)" /></div>
- <div><input type="button" value="javaeye" onclick="goback(this)" /></div>
- </body>
- </html>