如见以下A.html和B.html两个文件,现有问题请教:
1.用window.open如何取得多个返回值?
2.并根据子窗口的返回值,使父窗口新增加一个或多个新行?
3.请兄弟姐妹们看看怎么写这几个Javascript?
以前我在什么地方看见过,但现在搞忘记了。
A.html
<script>
function bs()
{
window.open( "b.html ", " ", " ");
return true;
}
</script>
<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=确定 οnclick= "bs() "> </td>
</tr>
<table>
B.html //把该页的a,b,c的值返回给A.html
<script>
function as()
{
???????
}
</script>
<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=确定 οnclick= "as() ">
</form>
1.用window.open如何取得多个返回值?
2.并根据子窗口的返回值,使父窗口新增加一个或多个新行?
3.请兄弟姐妹们看看怎么写这几个Javascript?
以前我在什么地方看见过,但现在搞忘记了。
A.html
<script>
function bs()
{
window.open( "b.html ", " ", " ");
return true;
}
</script>
<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=确定 οnclick= "bs() "> </td>
</tr>
<table>
B.html //把该页的a,b,c的值返回给A.html
<script>
function as()
{
???????
}
</script>
<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=确定 οnclick= "as() ">
</form>