js实现动态显示与隐藏层(visibility与display的差别)

发布时间:2020-10-22编辑:脚本学堂
js如何实现动态显示与隐藏层呢?主要是用到visibility与display,大家可以体会下二者之间的差别在哪里?希望本文对大家有所帮助。

通过设置display属性可以使div隐藏后释放占用的页面空间,如下所示:
 

复制代码 代码示例:
style = "display: none;"
document.getElementById("t2").style.display = "none";   //隐藏
document.getElementById("t2").style.display = "block";  //显示

例子,
 

复制代码 代码示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=7"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>visibility与display的差别-www.jb200.com</title>
</head>
<script type="text/javascript">
function $(id){ return id?document.getElementById(id):''; }
</script>
<body>
<div id="s1" style="width:200px; height:200px; background-color:#f00; float:left;">使用display显示与隐藏!</div>
<div id="s2" style="width:200px; height:200px; background-color:#Aff;float:left;">使用visibility显示与隐藏!</div>
<br/><br/>
<input type="button" onclick="$('s1').style.display = 'none';" value="display隐藏层" /><br/>
<input type="button" onclick="$('s1').style.display = 'block';" value="display显示层" /><br/>
<input type="button" onclick="$('s2').style.visibility = 'hidden';" value="visibility隐藏层" /><br/>
<input type="button" onclick="$('s2').style.visibility = 'visible';" value="visibility显示层" />
</body>
</html>