jquery采用JS实现高度自适应问题
采用的是JS 并且js和jquery在同一
js代码如下
function c1() { var ifm= document.getElementById("kj1"); var subWeb = document.frames ? document.frames["kj1"].document : ifm.contentDocument; if(ifm != null && subWeb != null) { ifm.height = subWeb.body.scrollHeight + 35; } }
iframe标签如下
<iframe id="kj1" name="kj1" width="100%" frameborder=0 onLoad="c1()" border="0" ></iframe>