首页 >web前端 >js教程 >在父页面调用子页面的JS方法_javascript技巧

在父页面调用子页面的JS方法_javascript技巧

WBOY
WBOY原创
2016-05-16 17:21:011117浏览

今天弄了一天了,终于在网上找到了解决办法

注意:问题是在父页面调用子页面的方法。。。。。

父页面:parent.html

复制代码 代码如下:





parent
<script><BR> function parentFunction() {<BR> alert('function in parent');<BR> } <P> function callChild() {<BR> child.window.childFunction();<BR> /*<BR> child 为iframe的name属性值,<BR> 不能为id,因为在FireFox下id不能获取iframe对象<BR> */<BR> }<BR></script>










子页面:child.html

复制代码 代码如下:





child
<script><BR> function childFunction() {<BR> alert('function in child');<BR> } <P> function callParent() {<BR> parent.parentFunction();<BR> }<BR></script>






大家可以根据自己的需求修改相应的代码即可。。。。。。。
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn