iframeEx.js 390 B

1234567891011121314
  1. /**
  2. * 加上此文件后,当前页面中所有的iframe的高度等于其加载的内容的高度,这样可以去掉iframe中的滚动条
  3. */
  4. $(function(){
  5. $.each($('iframe'),function(){
  6. $(this).bind('load',function(){
  7. if(document.all){
  8. $(this).height(this.document.body.scrollHeight);
  9. }else{
  10. $(this).height(this.contentDocument.body.offsetHeight);
  11. }
  12. });
  13. });
  14. });