码迷,mamicode.com
首页 > 其他好文 > 详细

div的显示和隐藏

时间:2014-06-30 07:25:54      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:html

比较简单实现.style.display控制层隐藏或显示属性.
<html>
<body>
<script>


function show(){
document.getElementById("div").style.display="";
//alert(document.getElementById("div").style.display)
}
function hidden(){
document.getElementById("div").style.display="none";
//alert(document.getElementById("div").style.display)
}
</script>
<BODY>
<input name="name" type="button" onClick="show();" value="显示">
<div id="div" style="display: none" onMouseout="hidden();">
show it
</div>
</BODY>
</HTML>

div的显示和隐藏,布布扣,bubuko.com

div的显示和隐藏

标签:html

原文地址:http://blog.csdn.net/gisredevelopment/article/details/35630017

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!