当前位置:Gxlcms > JavaScript > JavaScript固定DIV高度,超出部分自动添加滚动条

JavaScript固定DIV高度,超出部分自动添加滚动条

时间:2021-07-01 10:21:17 帮助过:9人阅读

function setheight() 
    { 
    var div=document.getElementById("event_basicInfo"); 
    //div.style.width="40%"; 
    div.style.height=400; 
    div.style.overflow="auto"; 
    } 
    window.onload=setheight;

人气教程排行