当前位置: 代码迷 >> Web前端 >> div展示隐藏
  详细解决方案

div展示隐藏

热度:146   发布时间:2013-11-03 15:39:14.0
div显示隐藏
用jquery 实现起来超级简单

<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(function() {
  $(".btn1").click(function(){
$("div").toggle();
  });
});
</script>
</head>
<body>
<div>我是div.</div>
<button class="btn1">Toggle</button>
</body>
</html>
  相关解决方案