gpt4 book ai didi

javascript - 向 Iframe 添加元素

转载 作者:可可西里 更新时间:2023-11-01 13:37:11 24 4
gpt4 key购买 nike

我正在创建一个包含 iframe 的页面。我的目标是创建一个将添加到 iframe 内容头部的 javascript。

但我总是收到暗示 iframe.contentDocument 为空的错误。

主页代码

<html>
<head>
<title>Sample "Hello, World" Application</title>
<script type="text/javascript" >
function sizeFrame() {
try{
var ifrm = document.getElementById("CFrame");
var bt = ifrm.contentDocument.createElement("base");
bt.setAttribute("target", "_parent");
ifrm.contentDocument.getElementsByTagName("head")[0].appendChild(bt);
}
catch (er)
{alert(er);}
}
</script>
</head>
<body>
<div id="sidecontainer">
<iframe id="SFrame" name="SearchFrame" frameborder ="0" width="500" height="100" scrolling="no" src="SearchBox.html"></iframe>
</div>
<div id="content">
<iframe id="CFrame" name="ContentFrame" frameborder="0" height="1000px" width="1000px" onload="sizeFrame()" scrolling="no" src="ContentFrame.html"></iframe>
</div>
</body>
</html>

Iframe ContentFrame.html 代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
</head>
<body>
<div id="input">
test
</div>
</body>
</html>

最佳答案

我建议你试试

ifrm.contentWindow.document.getElementById("id")

关于javascript - 向 Iframe 添加元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13707704/

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