<script type="text/javascript">
function display(y){$(y).style.display=($(y).style.display=="none")?"":"none"}
function $(s){return document.getElementById(s)}
</script>
2. 要显示/隐藏的html元素加上 id 属性
<table>
<tr id="menu" >
<td>控制这个tr的显示/隐藏</td>
</tr>
</table>
3,添加按钮,链接等触发 js 函数
<input type="button" onclick="display('menu')" value="显示/隐藏"/>
<a href="#" onclick="display('menu')" >显示/隐藏</a>
javascript显示隐藏层<div id="layer" style="display:none">广告</div>
<input type="botton" onclick="display(layer)">
javascript控制页面控件隐藏显示的两种方法,方法的不同之处在于控件隐藏后是否还在页面上占位
方法一:
document.all["PanelSMS"].style.visibility="hidden"
document.all["PanelSMS"].style.visibility="visible"
方法二:
document.all["PanelSMS"].style.display="none"
document.all["PanelSMS"].style.display="inline"
方法一隐藏后 页面的位置还被控件占用 只是不显示
方法二隐藏后 页面的位置不被占用
需要准备的材料分别是:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html的<script>标签中,再输入js代码:document.body.removeChild(document.getElementById("a"))。
3、浏览器运行index.html页面,会发现内容为123的div被移除了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)