摘自 :http://www.w3school.com.cn/tiy/t.asp?f=jquery_hide_explanations

<!DOCTYPE html>
<html>
<head>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".ex .hide").click(function(){
$(this).parents(".ex").hide("slow");
});
$(".sh .show").click(function(){
$(".ex").show(1000);
});
});
</script>
<style type="text/css">
div.ex
{
background-color:#e5eecc;
padding:7px;
border:solid 1px #c3c3c3;
}
</style>
</head>

<body>

<h3>中国办事处</h3>
<div class="ex">
<button class="hide" type="button">隐藏</button>
<p>联系人:张先生<br />
北三环中路 100 号<br />
北京</p>
</div>
<h3>美国办事处</h3>
<div class="ex">
<button class="hide" type="button">隐藏</button>
<p>联系人:David<br />
第五大街 200 号<br />
纽约</p>
</div>
<div class="sh">
<button class = "show" type= "button">展示 </button>
</div>

</body>
</html>

posted on 2015-09-21 14:00  名字是L  阅读(228)  评论(0编辑  收藏  举报