0

我在 jquery 中有一个函数可以在 iframe 上处理,但它给出了错误:访问被拒绝。我正在使用 IE 8 PFB 的代码:

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
  function resizeIframe(iframe) {
    iframe.height = iframe.contentWindow.document.body.scrollHeight + "px";
  }
</script> 


</head>
<body>
<iframe src="http://www.mysite.com"   id="idIframe" onload="resizeIframe(this)"  ></iframe>
</body>
</html>

我也尝试过调试,但我找不到确切的解决方案……有人知道吗?

4

1 回答 1

1

不允许您访问已加载到框架中的其他站点的 DOM。

大概www.mysite.com不是 iframe 本身出现的站点。(注意mysite.comwww.mysite.com是不同的站点)。

于 2013-05-16T10:24:53.523 回答