首页 > 编程语言 > 详细

Javascript实现DIV的隐藏和出现

时间:2014-09-11 09:36:41      阅读:241      评论:0      收藏:0      [点我收藏+]
<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

<title>oec2003</title>

<script language="JavaScript" type="text/JavaScript">

<!--

function toggle(targetid){

    if (document.getElementById){

        target=document.getElementById(targetid);

            if (target.style.display=="block"){

                target.style.display="none";

            } else {

                target.style.display="block";

            }

    }

}

-->

</script>

<style type="text/css">

<!--

#div1{

background-color:#000000;

height:400px;

width:400px;

display:none;

}

-->

</style>

</head>



<body>

<input type="button" id="butn" value="显示/隐藏" onclick="toggle(‘div1‘)" />

<center>

<div id="div1"></div></center>

居中的DIV

</body>

</html>

  

Javascript实现DIV的隐藏和出现

原文:http://www.cnblogs.com/charlieadios/p/3965695.html

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