Skip to content

Instantly share code, notes, and snippets.

@libo1106
Created November 26, 2012 05:05
Show Gist options
  • Save libo1106/4146686 to your computer and use it in GitHub Desktop.
Save libo1106/4146686 to your computer and use it in GitHub Desktop.
iframe子页面动态改变父页面iframe高度
//调整iframe高度
var height = $(document).height() + 'px';
var iframe = parent.document.getElementById('main');
iframe.style.height = height;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment