<script type="text/javascript">window.onload=autodivheight();
function autodivheight(){ //函数:获取尺寸
    //获取浏览器窗口高度
    winHeight = document.body.clientHeight;
    
    document.getElementById("treeDemo").style.height= winHeight/1.5 +"px";
    document.getElementById("table_right").style.height= winHeight/1.5 +"px";
}
window.onresize=function(){
autodivheight();
} //浏览器窗口发生变化时同时变化DIV高度</script>