`
summer754
  • 浏览: 14465 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

Permission denied to access property ‘body’

阅读更多
最近项目前段用iframe做了一个自适应高度:但是在火狐下出现了Permission denied to [align=left]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=domain  channels=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" onLoad="javascript:SetCwinHeight()"></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;
}
}
}
}
[/align][b][/b]

求高手帮帮!!!!!!!!!!!!谢谢
分享到:
评论
2 楼 Surmounting 2012-06-20  
我也遇到类似的问题了……
1 楼 lwkjob 2011-12-16  
你iframe的引用页是不是 网落上的啊 貌似是js跨域了 不能访问

相关推荐

Global site tag (gtag.js) - Google Analytics