有时候我们在提交表单的时候需要将两个表单的值互相传递,那么如何实现呢?其实很简单,就是用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 method="post" action=""> <input type="text"> <input type="button" value="A表单->传值给B表单"> </form> <form method="post" action=""> <input type="text"> <input type="button" value="B表单->传值给A表单"> </form> </body> </html>