最佳答案
我有这个 HTML 代码:
<html>
<head>
<script type="text/javascript">
function GetDoc(x)
{
return x.document ||
x.contentDocument ||
x.contentWindow.document;
}
function DoStuff()
{
var fr = document.all["myframe"];
while(fr.ariaBusy) { }
var doc = GetDoc(fr);
if (doc == document)
alert("Bad");
else
alert("Good");
}
</script>
</head>
<body>
<iframe id="myframe" src="http://example.com" width="100%" height="100%" onload="DoStuff()"></iframe>
</body>
</html>
问题是我收到了“坏消息”。这意味着 iframe 的文档没有被正确获取,而 GetDoc 函数实际返回的是父文档。
如果您能告诉我在哪里犯了错误,我将不胜感激。(我希望在 IFrame 中托管文档。)
谢谢你。