<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta name="author" content="http://www.plcxue.com/" />
<title>fadeOut()函数-plc学堂_www.plcxue.com</title>
<style type="text/css">
div{
background:#060;
width:300px;
height:300px;
color:red
}
</style>
<script type="text/
javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#up").click(function(){
$("div").fadeOut(5000,function(){alert('动画效果完成!')});
})
})
</script>
</head>
<body>
<div></div>
<button id="up">点击查看效果</button>
</body>
</html>