当前位置: 代码迷 >> JavaScript >> js 获取iframe内容的高度 并动态设立iframe的高度
  详细解决方案

js 获取iframe内容的高度 并动态设立iframe的高度

热度:111   发布时间:2013-04-02 12:35:26.0
js 获取iframe内容的高度 并动态设置iframe的高度
var frame = document.getElementById('#frame'),
    win = frame.contentWindow,
    doc = win.document,
    html = doc.documentElement,
    body = doc.body;

// 获取高度
var height = Math.max( body.scrollHeight, body.offsetHeight,
                       html.clientHeight, html.scrollHeight, html.offsetHeight );

frame.setAttribute('height', height);
  相关解决方案