Firefox iframe 中的 getElementById 返回 null 但适用于 Safari/Chrome
我有两个 html 文件。一个将另一个包含在 iframe 中。 iframe 对先前创建的元素执行 getElementById。这在 Chrome/Safari 中工作正常,但在 Firefox/IE8 中不起作用,我不明白为什么。
Firefox 返回:null
Safari 返回:[object HTMLDivElement]
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>untitled</title>
</head>
<body>
<iframe src="comment.html"></iframe>
</body>
</html>
comment.html
<div id="foobar"></div>
<script type="text/javascript">
alert(document.getElementById('foobar'));
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的评论 html 文件格式不正确。尝试使用:
Your comment html file is not properly formed. Try using: