今天弄了一天了,终于在网上找到了解决办法 注意:问题是在父页面调用子页面的方法。。。。。 父页面:parent.html 复制代码 代码如下: parent <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> 子页面:child.html 复制代码 代码如下: child <BR> function childFunction() {<BR> alert('function in child');<BR> } <P> function callParent() {<BR> parent.parentFunction();<BR> }<BR> 大家可以根据自己的需求修改相应的代码即可。。。。。。。