首页 > 其他 > 详细

div的显示和隐藏

时间:2014-06-30 07:25:19      阅读:337      评论:0      收藏:0      [点我收藏+]
比较简单实现.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的显示和隐藏

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!