Heim >Web-Frontend >js-Tutorial >在父页面调用子页面的JS方法_javascript技巧

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

WBOY
WBOYOriginal
2016-05-16 17:21:011117Durchsuche

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

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

父页面: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>






大家可以根据自己的需求修改相应的代码即可。。。。。。。
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn