window opener 弹出新页面

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
 <script>  
  function   bs()  
  {  
  window.open("B.html","","");  
  return   true;  
  }  
  </script>  
</HEAD>

<BODY>

  <table>  
  <tr>  
  <td>姓名</td>  
  <td>性别</td>  
  <td>年龄</td>  
  </tr>  
  <!--以下可动态添加(根据b.html的返回的内容自动添加一新行,并添加a,b,c的值,不能刷新本页面),怎么办???-->  
  <tr>  
  <td><input   type=text   name=a></td>  
  <td><input   type=text   name=b></td>  
  <td><input   type=text   name=c></td>  
  </tr>  
  <!--以上内容可以动态添加,怎么办???-->  
  <tr>  
  <td   colspan=3><input   type=button   name=as   value=A   onclick="bs()"></td>  
  </tr>  
  <table>  

----------------------------------------------------
    <table>  
  <tr>  
  <td>姓名</td>  
  <td>性别</td>  
  <td>年龄</td>  
  </tr>  
  <!--以下可动态添加(根据b.html的返回的内容自动添加一新行,并添加a,b,c的值,不能刷新本页面),怎么办???-->  
  <form  name="f">  
  <tr>  
  <td><input name="a"></td>  
  <td><input name="b"></td>  
  <td><input name="c"></td>  
  </tr>  
  <!--以上内容可以动态添加,怎么办???-->  
  <tr>  
  <td colspan=3><input  type="button"  name="as"  value="submit" onclick="bs();"></td>  
  </tr>  
  </form>  
  <table>  


</BODY>
</HTML>

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
 <script>  
  function   as()  
  {  
  opener.document.f.a.value=b.a.value;   //给A.html(上一个页面)页面赋值:
  opener.document.f.b.value=b.b.value;  
  opener.document.f.c.value=b.c.value;  
  }  
  </script> 
</HEAD>

<BODY>
  <form  name=b   action=#   method=post>  
  <input   type=text   name=a>  
  <input   type=text   name=b>  
  <input   type=text   name=c>  
  <input   type=submit   name=bs   value=确定   onclick="as()">  
  </form>
</BODY>
</HTML>

你可能感兴趣的:(html,C++,c,F#,C#)