<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<script src="jquery-1.8.3.min.js"></script>
<style>
.show_div {
background: red;
color: #fff;
width: 200px;
height: 200px;
line-height: 200px;
text-align: center;
}
</style>
</head>
<body>
<div class="show_div">我要点击</div>
<input type="button" id="inp" value="33333" />
<script type="text/javascript">
$(function () {
$("#inp").toggle(
function(){
$(".show_div").html("我要显示出来!");
$(this).val("33333");
},
function(){
$(".show_div").html("我隐藏!");
$(this).val("5555");
});
});
</script>
</body>
</html>