iframe自适应高度
我的页码上嵌套了一个iframe,这个iframe里的页面高度是不定的,我想让iframe的高度根据内容的高度增长,而且不出现滚动条,请高手指教...
我的页码上嵌套了一个iframe,这个iframe里的页面高度是不定的,我想让iframe的高度根据内容的高度增长,而且不出现滚动条,请高手指教
展开
3个回答
展开全部
通过js 来控制自适应高度;
html代码:
<iframe src="需要连接的iframe地址" id="iframepage" name="iframepage" frameBorder=0 scrolling=no width="100%" onLoad="iFrameHeight()" ></iframe>
js代码:
<script type="text/javascript" language="javascript">
function iFrameHeight() {
var ifm= document.getElementById("iframepage");
var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;
if(ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;
}
}
</script>
html代码:
<iframe src="需要连接的iframe地址" id="iframepage" name="iframepage" frameBorder=0 scrolling=no width="100%" onLoad="iFrameHeight()" ></iframe>
js代码:
<script type="text/javascript" language="javascript">
function iFrameHeight() {
var ifm= document.getElementById("iframepage");
var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;
if(ifm != null && subWeb != null) {
ifm.height = subWeb.body.scrollHeight;
}
}
</script>
展开全部
<iframe name="bform" marginwidth="0" marginheight="0" src="BasicRegister.aspx" frameborder="0"
scrolling="No" style="background-color: #ffffff; width: 100%" bordercolor="#ffffff" onload="this.height=this.contentWindow.document.documentElement.scrollHeight"></iframe>
scrolling="No" style="background-color: #ffffff; width: 100%" bordercolor="#ffffff" onload="this.height=this.contentWindow.document.documentElement.scrollHeight"></iframe>
追问
我试了试还是不行,我从网上查了好多,也试了好多都不行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询