我在 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>
我也尝试过调试,但我找不到确切的解决方案……有人知道吗?