复制代码代码如下:
window.onload = function(){
var height = document.body.clientheight;
document.getElementById( "vivs")。style.height =(height -20) + "px";
document.getElementById( "emd")。style.height =(height -20) + "px";
document.getElementById( "ob")。style.height =(height -20) + "px";
};
window.onresize = function(){
height = document.body.clientheight;
document.getElementById( "vivs")。style.height =(height -20) + "px";
document.getElementById( "emd")。style.height =(height -20) + "px";
document.getElementById( "ob")。style.height =(height -20) + "px";
};