我有这个 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 中托管文档。)
谢谢你。