javascirpt实现2个iframe之间传值的方法
编程学习 2021-07-04 19:59www.dzhlxh.cn编程入门
这篇文章主要介绍了javascirpt实现2个iframe之间传值的方法,涉及javascript针对iframe框架下的页面元素操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了javascirpt实现2个iframe之间传值的方法。分享给大家供大家参考,具体如下:
index.htm
<body> <table border="1" width="100%"> <tr> <td width="100%"><iframe src="iframe1.htm" name="aa"></iframe></td> </tr> <tr> <td width="100%"><iframe src="iframe2.htm" name="bb"></iframe></td> </tr> </table> </body>
iframe1.htm
<html> <title>1</title> <head> <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); } // --></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>
更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《》、《》、《》、《》、《》、《》、《》、《》、《》及《》
希望本文所述对大家JavaScript程序设计有所帮助。
上一篇:JS传值出现中文参数乱码的解决方法
下一篇:老生常谈 js中this的指向