六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 58|回复: 0

Permission denied to access property ‘body’

[复制链接]

升级  20%

2

主题

2

主题

2

主题

童生

Rank: 1

积分
10
 楼主| 发表于 2013-1-29 22:00:22 | 显示全部楼层 |阅读模式
<div style="text-align: left;">最近项目前段用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" ></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;
}
}
}
}
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表