首页 > 其他 > 详细

iframe自适应宽度

时间:2016-01-22 14:19:50      阅读:173      评论:0      收藏:0      [点我收藏+]
<iframe id="course_content" style="width:100%;margin:5px 0 0;" scrolling="no" src="<?php ?>" ></iframe>
 <script>
      $("#course_content").load(function() {
          var iframeHeight = $(this).contents().find("div.para").height();
          if(iframeHeight<180)
          {
              var iframeHeight = $(this).contents().find("body").height();
              $(this).height(iframeHeight+30);
          }
          else{
              //alert(iframeHeight+160);
              $(this).height(iframeHeight+160);
          }
      });
       </script> 

 

iframe自适应宽度

原文:http://www.cnblogs.com/zeze/p/5150872.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!