function $(myid)
{
return document.getElementById(myid);
}
window.onload=function(){
var loadHeight=parseInt(document.body.offsetHeight);
var loadWidth=parseInt(document.body.offsetWidth);
$("main").style.height=$("left").style.height=parseInt(loadHeight-100)+"px";
$("menu").style.height=(loadHeight-165) + "px";
$("bottom").style.width=$("tab").style.width=(loadWidth-150)+"px";
$("right").style.width=(loadWidth-155)+"px";
$("right").style.height=(loadHeight-135) + "px";
}
window.onresize=function(){
var reHeight=document.body.offsetHeight;
var reWidth=document.body.offsetWidth;
$("main").style.height=$("left").style.height=(reHeight-100)+"px";
$("menu").style.height=(reHeight-165) + "px";
$("bottom").style.width=$("tab").style.width=(reWidth-150)+"px";
$("right").style.width=(reWidth-155)+"px";
$("right").style.height=(reHeight-135) + "px";
}提示$("main").style.height=$("left").style.height=parseInt(loadHeight-100)+"px";这一行参数错误,寻求解决方法