//设置一个div,但是默认却是隐藏起来的。.s1{position: absolute;display: none;}// jsfunction show(){document.getElementById("s1").style.display="block";}function dis(){document.getElementById("s1").style.display="none";}