当前位置: 代码迷 >> Web前端 >> DIV兑现隐藏
  详细解决方案

DIV兑现隐藏

热度:185   发布时间:2012-10-21 09:00:07.0
DIV实现隐藏
<div id="divTest" style="height:100px;width:100px;background-color:red;display:none"></div>
<div onclick="document.getElementById('divTest').style.display='block'">点击显示</div>
  相关解决方案