Iframe 自動 resize高度

摘要:Iframe 自動 resize高度

<iframe  id="iframe1" width="750"  onload="javascript:{resize('iframe1');}" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" width="100%" height="300" src="./xxxxx"> </iframe>

function resize(FramID)
{
 parent.document.getElementById(FramID).height=document.body.scrollHeight;   
 }