今天弄了一天了,終於在網路上找到了解決方法
注意:問題是在父頁呼叫子頁面的方法。 。 。 。 。
父頁: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>
大家可以依照自己的需求修改對應的程式碼即可。 。 。 。 。 。 。