JavaScript固定DIV高度,超出部分自动添加滚动条
来源:动视网
责编:小采
时间:2020-11-27 20:30:59
JavaScript固定DIV高度,超出部分自动添加滚动条
JavaScript固定DIV高度,超出部分自动添加滚动条:function setheight() { var div=document.getElementById("event_basicInfo"); //div.style.width="40%"; div.style.height=400; div.style.overflow="auto"; } window.onload=setheight;
导读JavaScript固定DIV高度,超出部分自动添加滚动条:function setheight() { var div=document.getElementById("event_basicInfo"); //div.style.width="40%"; div.style.height=400; div.style.overflow="auto"; } window.onload=setheight;

function setheight()
{
var div=document.getElementById("event_basicInfo");
//div.style.width="40%";
div.style.height=400;
div.style.overflow="auto";
}
window.onload=setheight;
JavaScript固定DIV高度,超出部分自动添加滚动条
JavaScript固定DIV高度,超出部分自动添加滚动条:function setheight() { var div=document.getElementById("event_basicInfo"); //div.style.width="40%"; div.style.height=400; div.style.overflow="auto"; } window.onload=setheight;