JS l两个 Frame 之间传值

javascirpt实现2个frame传值

 

index.htm <body> <table border="1" width="100%"> <tr> <td width="100%"><iframe src="iframe1.htm" mce_src="iframe1.htm" name="aa"></iframe></td> </tr> <tr> <td width="100%"><iframe src="iframe2.htm" mce_src="iframe2.htm" name="bb"></iframe></td> </tr> </table> </body> iframe1.htm <html> <title>1</title> <head> <mce:script type="text/javascript"><!-- function aa(){ parent.frames["bb"].document.all["TextBox3"].value = document.getElementById("TextBox1").value; parent.frames["bb"].document.all["TextBox4"].value = document.getElementById("TextBox2").value; alert(parent.frames["bb"].document.all["TextBox3"].value); alert(parent.frames["bb"].document.all["TextBox4"].value); } // --></mce:script> </head> <body> <form id="a"> <input id="TextBox1" type="text" id="TextBox1" value="1"/> <input id="TextBox2" type="text" id="TextBox2" value="2"/> <input id="T" type="button" value="3333333" onclick="aa();"/> </form> </body> </html> iframe2.htm <html> <title>2</title> <head></head> <body> <form id="b"> <input id="TextBox3" type="text" id="TextBox1" value="1231111"/> <input id="TextBox4" type="text" id="TextBox2" value="123"/> </form> </body> </html> 本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/a9529lty/archive/2008/10/27/3161022.aspx

你可能感兴趣的:(iframe,function,input,button,border,textbox)