gpt4 book ai didi

javascript - 如何使用JS调用iframe中的函数?

转载 作者:行者123 更新时间:2023-12-02 16:07:51 35 4
gpt4 key购买 nike

如何使用 JS 调用 iframe 中的函数或者如何定位 iframe?我尝试过使用 document.getElementByID("myIframe"),但它似乎不起作用。下面是 HTML 的基本形式:

<html>
<head>
<script>
function runFunction() {
var win = document.getElementByID("myIframe");
}
</script>
</head>
<body onload="runFunction()">
<iframe id="myIframe" name="myIframe" src="http://www.myothersite.com/"></iframe>
</body>
</html>

我的另一个站点有一个名为 getEvents() 的函数,我想以某种方式调用它。任何帮助将不胜感激。

最佳答案

您应该能够访问 iframe 并使用以下命令调用该函数:

// reference to window in iframe with id or name 'myIframe'
var win = window.frames['myIframe'];

// invoke function in win
win.getEvents();

关于javascript - 如何使用JS调用iframe中的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30549725/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com