jquery采用JS实现高度自适应问题

jquery采用JS实现高度自适应问题

采用的是JS 并且js和jquery在同一

js代码如下

 

  
  
  
  
  1. function c1() {    
  2.         var ifm= document.getElementById("kj1");  
  3.         var subWeb = document.frames ? document.frames["kj1"].document : ifm.contentDocument;    
  4.         if(ifm != null && subWeb != null) {       
  5.            ifm.height = subWeb.body.scrollHeight + 35; 
  6.         }    
  7.     }    

iframe标签如下

 

  
  
  
  
  1. <iframe  id="kj1" name="kj1"  width="100%" frameborder=0 onLoad="c1()" border="0" style="display:none "></iframe> 

 

你可能感兴趣的:(jquery,职场,高度自适应,休闲,js代码)