基本上,我有一个iframe嵌入页面,并且iframe有一些我需要从父页面调用的JavaScript例程。
iframe
现在相反很简单,因为您只需要调用parent.functionName(),但不幸的是,我需要完全相反的。
parent.functionName()
请注意,我的问题不是更改 的源URL,iframe而是调用iframe.
假设您的 iFrame 的 id 是“targetFrame”并且您要调用的函数是targetFunction():
targetFunction()
document.getElementById('targetFrame').contentWindow.targetFunction();
您还可以使用window.frames而不是访问框架document.getElementById。
window.frames
document.getElementById
// this option does not work in most of latest versions of chrome and Firefox window.frames[0].frameElement.contentWindow.targetFunction();