Skip to content

Instantly share code, notes, and snippets.

@ifeiwu
Last active June 27, 2021 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ifeiwu/370ea4bd0a5a8276d0b92c422a2634fe to your computer and use it in GitHub Desktop.
Save ifeiwu/370ea4bd0a5a8276d0b92c422a2634fe to your computer and use it in GitHub Desktop.
jQuery自动调整iframe页面高度
$(function() {
var height, _height;
setInterval(function(){
height = $(document.body).height();
if (height != _height){
_height = height;
$(parent.document.body).find("#testifr").height(height);
}
}, 0);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment