模仿官网站写的一个DEMO
Code
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="DEMO._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#showr").click(function() {
//找到第一个Div,开始显示
$("div:eq(0)").show('slow', function() {
//arguments.callee() 可以取得本函数的引用,这里面实现了递归
$(this).next().show('slow', arguments.callee);
});
});
$("#hidr").click(function() {
$("div").eq(0).hide('normal', function() {
$(this).next().hide('slow',arguments.callee)
});
});
});
</script>
</head>
<body>
<button id="showr">Show</button>
<button id="hidr">Hide</button>
<div>Hello 3,</div>
<div>how</div>
<div>are</div>
<div>you?</div>
</body>
</html>
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="DEMO._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script src="jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#showr").click(function() {
//找到第一个Div,开始显示
$("div:eq(0)").show('slow', function() {
//arguments.callee() 可以取得本函数的引用,这里面实现了递归
$(this).next().show('slow', arguments.callee);
});
});
$("#hidr").click(function() {
$("div").eq(0).hide('normal', function() {
$(this).next().hide('slow',arguments.callee)
});
});
});
</script>
</head>
<body>
<button id="showr">Show</button>
<button id="hidr">Hide</button>
<div>Hello 3,</div>
<div>how</div>
<div>are</div>
<div>you?</div>
</body>
</html>
官网DEMO地址:http://docs.jquery.com/Effects/show