javascirpt实现2个iframe之间传值的方法

这篇文章主要介绍了javascirpt实现2个iframe之间传值的方法,涉及javascript针对iframe框架下的页面元素操作技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了javascirpt实现2个iframe之间传值的方法。分享给大家供大家参考,具体如下:

index.htm

<body> <table> <tr> <td><iframe src="https://www.jb51.net/iframe1.htm"></iframe></td> </tr> <tr> <td><iframe src="https://www.jb51.net/iframe2.htm"></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> <input type="text" value="1"/> <input type="text" value="2"/> <input type="button" value="3333333"/> </form> </body> </html>

iframe2.htm

<html> <title>2</title> <head></head> <body> <form> <input type="text" value="1231111"/> <input type="text" value="123"/> </form> </body> </html>

更多关于JavaScript相关内容感兴趣的读者可查看本站专题:《JavaScript传值操作技巧总结》、《javascript编码操作技巧总结》、《JavaScript中json操作技巧总结》、《JavaScript切换特效与技巧总结》、《JavaScript查找算法技巧总结》、《JavaScript动画特效与技巧汇总》、《JavaScript错误与调试技巧总结》、《JavaScript数据结构与算法技巧总结》、《JavaScript遍历算法与技巧总结》及《JavaScript数学运算用法总结

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

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzsgsy.html