首页 > 编程 > JavaScript > 正文

JavaScript实现同一页面内两个表单互相传值的方法

2019-11-20 11:51:02
字体:
来源:转载
供稿:网友

本文实例讲述了JavaScript实现同一页面内两个表单互相传值的方法。分享给大家供大家参考。具体如下:

有时候我们在提交表单的时候需要将两个表单的值互相传递,那么如何实现呢?其实很简单,就是用JavaScrip获取任一表单的值,然后赋给另一个,具体可看代码,代码很有意思,也很实用。

运行效果截图如下:

具体代码如下:

<html><head><title>JavaScript同一页面两个表单互相传值</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head><script language="JavaScript">function ok(){ document.form2.textfield2.value=document.form1.textfield.value;}function ok1(){document.form1.textfield.value=document.form2.textfield2.value;}</script><body><form name="form1" method="post" action=""> <input type="text" name="textfield"> <input type="button" name="Submit" value="A表单->传值给B表单" onClick="ok()"></form><form name="form2" method="post" action=""> <input type="text" name="textfield2"> <input type="button" name="Submit" value="B表单->传值给A表单" onClick="ok1()"></form></body></html>

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表