关于页面中使用JS的知识积累

// iframe的高度随内容自动增大,而不产生下拉滚动条。
function  autoResize()  {
  
try   {
    document.all[
" myFrame " ].style.height = mainFrame.document.body.scrollHeight;
  }
catch (e) {}
}

function  autoResize_history()  {
  
try   {
    document.all[
" historyFrame " ].style.height = historyFrame.document.body.scrollHeight;
  }
catch (e) {}
}


你可能感兴趣的:(关于页面中使用JS的知识积累)