心不淡定,写起代码来,也写的好不淡定……
页面里面iframe自适应高度,只需要在最上面的引用下面js即可:
<script type="text/javascript"> //动态改线iframe的高度 function load() { var Iframe_con = document.getElementById("Iframe_con"); var i_height =$(window.frames["Iframe_con"].document).find(".ht").height();//获取iframe中body里面的class为ht标签的高度赋值给iframe
//console.log(i_height); Iframe_con.height = i_height; $(".d_left").height(i_height+ 85);//这个是设置左侧菜单的高度跟右边匹配 } </script>