ad5081d3
 
  孙向锦
 
初始化项目
 | 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 
 | 
  
  function cmainFrame(){
  	var hmain = document.getElementById("mainFrame");
  	var bheight = document.documentElement.clientHeight;
  	hmain .style.width = '100%';
  	hmain .style.height = (bheight  - 49) + 'px';
  	var bkbgjz = document.getElementById("bkbgjz");
  	bkbgjz .style.height = (bheight  - 41) + 'px';
  	
  }
  cmainFrame();
  window.onresize=function(){  
  	cmainFrame();
  };
  jzts();
 
 |