错误:在iFrame中访问属性“文档”的权限被拒绝无效

时间:2014-08-29 08:31:26

标签: javascript iframe cross-domain

我有两页home.html和window.html

home.html的

<html>
<head>
</head>
<body>
  <a href="window.html" onclick="return !window.open(this.href,'','height=400,width=600,resizable=1');">Populate from new Window</a>
 <div id="comment" >Div in parent</div>
</body>
</html>

window.html

<html>
<head>
</head>
<body>
<script>    
window.opener.document.getElementById("comment").innerHTML = "Load from new window";    
</script>  
</body>
</html>

问题在于,当我单击“从新窗口填充”时,它会打开一个正在发生的新子窗口,并使用“从新窗口加载”填充父元素中的div,这不会发生。它在Firefox中给出了错误:错误:拒绝权限以访问属性&#39;文档&#39;。

有人可以帮助解决这个问题。我还没有在其他浏览器中查看,问题仍然存在。

0 个答案:

没有答案