控制其显示不显示:
document.getElementById("nav").style.display = "none"//不显示
document.getElementById("nav").style.display = "block"//显示
修改其内容:
//红色显示新内容,指定的其它标签页都被解释成html语言。
document.getElementById("nav").innerHTML = "<font color=red>新内容</font>"
//无论你写什么,都会被当做文本显示出来。
document.getElementById("nav").innerText = "<font color=red>新内容</font>"
追问还有,我想让这个div固定高度,如果内容过多,出现滚动条,该怎么做???
追答在style标签里加上这个:
#nav{width:div的宽度;height:div的高度;overflow:auto;}