iframe自适应宽度

时间:2022-07-22 21:30:11
<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>