<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="resource/bootstrap/css/bootstrap.css"/>
<script src="resource/jQuery/jquery-1.11.3.js"></script>
<script src="resource/bootstrap/js/bootstrap.js"></script>
<script>
$().ready(function(){
$("#hide").click(function(){
$("p").hide();
})
$("#show").click(function(){
$("p").show();
})
})
$().ready(function(){
$("#hide1").click(function(){
$("p").hide();
})
$("#show1").click(function(){
$("p").show();
})
})
$().ready(function(){
$("#hide2").click(function(){
$("p").hide();
})
$("#show2").click(function(){
$("p").show();
})
})
$().ready(function(){
$("#show3").click(function(){
$("p").show();
})
$("#hide3").click(function(){
$("p").hide();
})
})
</script>
</head>
<body>
<p>if you click the button named hide, i will disappear</p>
<button >hide</button>
<button >show</button>
<button >hide1</button>
<button >show1</button>
<button >hide2</button>
<button >show2</button>
<button >show3</button>
<button >hide3</button>
</body>
</html>