开发者

iframe auto resize in aspx files with vb.net codebehind

开发者 https://www.devze.com 2022-12-19 19:28 出处:网络
I put in the iframe tag as follows in my .aspx page - Now what code do i put in javascript or vb.net to make this auto resizable depen开发者_如何学运维ding on the size of the page that comes in?Fro

I put in the iframe tag as follows in my .aspx page -

Now what code do i put in javascript or vb.net to make this auto resizable depen开发者_如何学运维ding on the size of the page that comes in?


From Matt Cutts

window.onload = function(){

  var child = document.getElementById('child-iframe-id');
  child.style.height = child.contentWindow.document.body.scrollHeight + 'px';

}

NOTE: If your child content window comes from a different domain as the parent, this likely won't work correctly, or reliably.

0

精彩评论

暂无评论...
验证码 换一张
取 消