首頁 >web前端 >js教程 >在父頁面呼叫子頁面的JS方法_javascript技巧

在父頁面呼叫子頁面的JS方法_javascript技巧

WBOY
WBOY原創
2016-05-16 17:21:011115瀏覽

今天弄了一天了,終於在網路上找到了解決方法

注意:問題是在父頁呼叫子頁面的方法。 。 。 。 。

父頁:parent.html

複製代碼 代碼如下:

-/html/PUBL "IC DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



parent
<script><BR> function parentFunction() {<BR>  alert('function in parent');<BR> } <P> function callChild() {<BR>  child.window.childFunction();<BR>  /*<BR>   child 為iframe的name屬性值,<🠎> 物件<BR>  */<BR> }<BR></script>










子頁:child.html

複製代碼 代碼如下:
-/html/PUBL "IC DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



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






大家可以依照自己的需求修改對應的程式碼即可。 。 。 。 。 。 。
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn