0

我不知道为什么,但我的代码不起作用......

问题:iframe 不会调整大小。

我已经在网上搜索了解决方案,并且我在另一个域上有相同的代码,它可以工作......


编码:

<html>

<head>

<base target="_self">
<title>Montana Code Annotated - State Law</title>
<meta name="title" content="">
<meta name="description" content="">
<meta name="keywords" content="">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">

<script type="text/javascript">
<!--
function resizeIframe(id){
/*
this.obj=obj
//this.obj.width=null
//this.obj.width=window.frames['sizeframe'].document.body.scrollWidth
this.obj.style.height='' // for Firefox and Opera
setTimeout('this.obj.style.height=this.obj.contentWindow.document.body.scrollHeight+(notIE?heightOffset:0)',10) // setTimeout required for Opera
*/

el=document.getElementById(id)
el.style.height="200px" // for Firefox and Opera
setTimeout("el.style.height=el.contentWindow.document.body.scrollHeight+'px'",1) // setTimeout required for Opera
}

// -->
</script>

</head>

<body topmargin="0" bottommargin="0"><div align="center">


<p><br>
&nbsp;</p>
<p>
<iframe name="windowoflaw" id="sizeframe" allowTransparency="true" onload="resizeIframe(this.id)" marginwidth="1" marginheight="1" height="200" width="800" scrolling="no" align="center" border="0" frameborder="0" src="http://leg.mt.gov/bills/mca_toc/">
</iframe></p>
</div>

</body>

</html>

-------------- 域名:montanacodeannotated.com

4

2 回答 2

2

您的页面出现 Javascript 错误:

Uncaught SecurityError: Blocked a frame with origin "mytesturl" from accessing a frame with origin "http://leg.mt.gov". Protocols, domains, and ports must match.

如果协议、域或端口不匹配,您将无法访问框架的内容(或在本例中为子页面的滚动高度)。

GitHub 上有一个声称可以工作的库: https ://github.com/davidjbradshaw/iframe-resizer

搏一搏。

于 2013-11-06T18:22:18.863 回答
1

这是因为框架具有不同的来源,因此您无法访问其中的内容。你会在你的检查器中看到这样的消息:

Uncaught SecurityError: Blocked a frame with origin "http://montanacodeannotated.com" from accessing a frame with origin "http://leg.mt.gov". Protocols, domains, and ports must match.

也许您可以为您的站点下载镜像版本?运行wget -r http://leg.mt.gov/bills/mca_toc/将递归地复制一个您可以放在自己域中的版本(当然,您可能想先询问源站!)。

一旦托管在同一个域上,我认为上面的代码就可以了。

于 2013-11-06T18:14:53.473 回答