summer754 发表于 2013-1-29 22:00:22

Permission denied to access property ‘body’

<div style="text-align: left;">最近项目前段用iframe做了一个自适应高度:但是在火狐下出现了Permission denied to access property ‘body’ 问题;查了很多治疗都是了,又说是兼容问题 但是是了很多js还是不行,也有说是域document.domain的问题,但是还是没能解决问题:
代码片段如下:
freemaker部分:
<div class="wrap egovwrap"><!--信息内容主体容器-->
      <div class="container">
      <div class="breadnav">
         <@designChnlRoute domains=domain channels=channel objects=root ifNosearch=1 ifChnl=1/>
      </div>
   <div class="eleftbox">
            <div class="content">
                  <@designChnlChildArea sType="channelchilder" domains=domainchannels=channel Title="${channel.name}"
                                        ifChnl=1 useUtag=1 uStyle="txtlist cataloglist"/>
               </div>
             </div>
             <div class="erightbox">
                <iframe width="750" height="500" scrolling="no" frameborder="0" id="rightframe" name="rightframe" ></iframe>
             </div>
            <!--Container End-->
      </div>
js部分:
function SetCwinHeight(){
var rightframe=document.getElementById("rightframe"); //iframe id

if (document.getElementById){
if (rightframe && !window.opera){
if (rightframe.contentDocument && rightframe.contentDocument.body.offsetHeight){
rightframe.height = rightframe.contentDocument.body.offsetHeight;
}else if(rightframe.Document && rightframe.Document.body.scrollHeight){
rightframe.height = rightframe.Document.body.scrollHeight;
}
}
}
}
页: [1]
查看完整版本: Permission denied to access property ‘body’