iframe 使用,及其高度自定

Posted .net刘玉斌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iframe 使用,及其高度自定相关的知识,希望对你有一定的参考价值。

<iframe id="iframepage" src="Index.html" name="iframepage" frameborder="0" width="1349" scrolling="no" onload="iFrameHeight()" ></iframe>

<a href="aboutUs.html" ; target="iframepage" >医院介绍</a></li>
<a href="newsList.html" ; target="iframepage" >新闻动态</a></li>

  其中name  和  tatget   必须保持一样。

  js中获取iframe中页面的高度

<script type="text/javascript">

function iFrameHeight() {
var ifm = document.getElementById("iframepage");
var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;      // IE和其他浏览器兼容选择
if (ifm != null && subWeb != null) {
ifm.height = subWeb.body.offsetHeight;              //offsetHeight 页面高度


}
</script>

 

以上是关于iframe 使用,及其高度自定的主要内容,如果未能解决你的问题,请参考以下文章

Eureka:自定义行的动态高度

单向(仅高度)自定尺寸 UI 组件预览

iOS UILabel自定义行间距时获取高度

将位图图像裁剪为自定义正方形

iOS中的自定大小集合视图单元格

如何动态计算自定义展开/可折叠 UITableViewCell 的高度