5D艺术网首页
商城
|
资讯
|
作品
|
博客
|
教程
|
论坛
登录
注册
加为好友
发短消息
来自:
性别:秘密
最后登录:2009-03-18
http://jybbh.5d.cn/
首页
|
新闻
|
话题
|
博客
|
相册
|
艺术作品
|
社交关系
|
留言板
|
社交圈
2005/06/14 | 利用javascript怎么接收从另外一个页面的表单传递过来的数值?
类别(WEB相关)
|
评论
(0)
|
阅读(363)
|
发表于 13:33
先打开form1
再打开form2,按里面的显示数据的按钮
form1.html
-------------
<head>
<script language="javascript">
<!--
function opennew()
{
window.open("form2.html","music","height=250, width=280, top=0, left=0, toolbar=no, menubar=no, scrollbars=no,resizable=yes,location=no, status=no")
}
-->
</script>
</head>
<form name=form1 action="" method="" id=lin>
form1的值:<br>姓名:<input type=text name=text1 id=xing><Br>
爱好:<input type="text" name=text11><br>
性别:<input type="text" name=text12><br>
好处:<input type="text" name=text3>
<input type=button value="浏览确认" onclick="opennew()">
</form>
------------------
form2.html
-----------
<html>
<head>
<title>Hi</title>
<script language=javascript>
<!--
function xing1(){
window.opener.document.form1.text11.value=form2.txt2.value;
window.close();
}
-->
</script>
<script language="javascript" type="text/javascript">
function xing(){
var dd=window.opener.location.href; //父窗口的地址
var aa=window.opener.form1.text1.value;
var bb=window.opener.form1.text11.value;
var cc=window.opener.form1.text12.value;
document.form2.txt2.value=aa;
document.form2.txt22.value=bb;
document.form2.txt3.value=cc;
document.form2.txt4.value=window.opener.form1.text3.value;
document.form2.txt5.value=dd;
}
</script>
</head>
<body>
<form action="form.asp" method="post" name="form2" target=_blank>
form2的值:<br>姓名:<input type="text" name="txt2" readonly/>
<br>爱好:<input type="text" name="txt22" readonly><br>
性别:<input type="text" name="txt3"><br>
好处:<input type="text" name="txt4"><br>
父地址:<input type="text" name="txt5" size=35><br>
<input type="submit" name=submit value="提交">
</form>
<input type=button name=button value="关闭窗口" onclick="xing1()">
<input type=button name=button1 value="显示数据" onclick="xing()">
</body>
</html>
0
评论
Comments
日志分类
首页
[252]
Ken的日志
[63]
工作心得
[3]
编程相关
[28]
潮汕文化
[4]
计算机相关
[28]
WEB相关
[84]
JAVA相关
[20]
Eclipse相关
[7]
Tomcat相关
[1]
SQL
[14]