页面1:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MineXueXi.aspx.cs" Inherits="MineXueXi" %> <!doctype html> <html charset="utf-8"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title></title> <script src="common.js" type="text/javascript"></script> <script type="text/javascript"> <!-- function openwin() { window.open("MineXueXi01.aspx", "newwindow", "height=100, width=400, toolbar =no, menubar=no, scrollbars=no, resizable=no, location=no, status=no") //写成一行 } --> </script> </head> <body> <input type="button" value=" open winow " onclick="openwin();" /> <div id="div1"> </div> </body> </html>
页面2:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MineXueXi01.aspx.cs" Inherits="MineXueXi01" %> <!doctype html> <html charset="utf-8"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title></title> <script src="common.js" type="text/javascript"></script> <script type="text/javascript"> <!-- window.onload = function () { window.opener.document.getElementById("div1").innerHTML = document.getElementById("text1").value; } --> </script> </head> <body> <input type="text" id="text1" name="text1" value="0624" /> </body> </html>
/** *打开模态窗口 *@url 地址 *@width 宽度 *@height 高度 */ function showDialog(url, width, height) { var x = parseInt(screen.width / 2.0) - (width / 2.0); var y = parseInt(screen.height / 2.0) - (height / 2.0); if (window.ActiveXObject) { retval = window.showModalDialog(url, window, "dialogWidth:" + width + "px; dialogHeight:" + height + "px; dialogLeft:" + x + "px; dialogTop:" + y + "px; status:no; directories:yes;scrollbars:no;Resizable=no; "); } else { var win = window.open(url, "mcePopup", "top=" + y + ",left=" + x + ",scrollbars=" + scrollbars + ",dialog=yes,modal=yes,width=" + width + ",height=" + height + ",resizable=no"); eval('try { win.resizeTo(width, height); } catch(e) { }'); win.focus(); } }