gpt4 book ai didi

javascript - 运行 iframe 中的 javascript 函数?

转载 作者:行者123 更新时间:2023-11-30 12:34:52 26 4
gpt4 key购买 nike

我正在尝试运行位于 iframe 内的 javascript 函数。

<script>
document.getElementById('myFrame').contentWindow.setupCookie()
</script>

<iframe id="myFrame" src="iframe.html"></iframe>

iframe.html

<script>
function setupCookie() {
document.cookie = "guvenli=1";
}
</script>

<center style="margin-top:200px;">
<a href="javascript:;"
onClick="setupCookie(); location.href='/index.php'">Enter Site >></a></center>

正确的做法是什么?

最佳答案

您的方法是正确的,但是您的 iframe 需要加载才能使用 Javascript 引用它。

您应该等待 DOM 内容加载

document.addEventListener("DOMContentLoaded", function(event) {
document.getElementById('myFrame').contentWindow.setupCookie();
});

关于javascript - 运行 iframe 中的 javascript 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26369030/

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