xxxxxxxxxx
<!DOCTYPE html>
<html>
<title>jQuery 效果- Hide 和Show显示隐藏示例 - 基础教程(div.cn)</title>
<head>
<style>
div {
padding: 15px;
background: #7F00FF;
color: white;
margin-bottom: 15px;
}
</style>
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#hide-btn").click(function(){
$("div").hide(1000, function(){
alert("DIV 被隐藏");
});