jQuery 抄袭笔记(10) : Toggle()(2)
13 Oct 2011点击链接显示/隐藏选中对象。可以利用这个实现侧栏项目的显示/隐藏。
01 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
02 <html xmlns="http://www.w3.org/1999/xhtml">
03 </span>
04 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
05</span>Hello Lazynight!</title>
06 <script type="text/javascript" src="jquery-1.1.3.pack.js"></script>
07 <script type="text/javascript">
08 $(document).ready(function(){
09 $("a").toggle(function(){
10 $("#text").hide('slow');},
11 function(){
12 $("#text").show('fast');
13 });
14 });
15 </script>
16 </head>
17 </span>
18 <a href="http://lazynight.me">
19 Everytime it rains-Ace Of Base
20 </a>
21 <div id="text">
22
02 <html xmlns="http://www.w3.org/1999/xhtml">
03 </span>
04 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
05
06 <script type="text/javascript" src="jquery-1.1.3.pack.js"></script>
07 <script type="text/javascript">
08 $(document).ready(function(){
09 $("a").toggle(function(){
10 $("#text").hide('slow');},
11 function(){
12 $("#text").show('fast');
13 });
14 });
15 </script>
16 </head>
17 </span>
18 <a href="http://lazynight.me">
19 Everytime it rains-Ace Of Base
20 </a>
21 <div id="text">
22
</span>
23 I see dark clouds out my window
24 I know the storm is coming any minute
25 And the thunder just confirms my fears
26 And I know the tears are in there
27 I'll be crying unable to stop
28 Look here comes the very first drop
29
30 'Cause every time it rains
31 I fall to pieces
32 So many memories the rain releases
33 I feel you… I taste you
34 I cannot forget
35 Every time it rains… I get wet
36
37 Darling I am still in love with you
38 As time passes by it just intensifies
39 I know I'll never be with you again
40 I'll never find another with that kindness in his eyes
41 I'll be trying unable to stop
42 Look here comes the very first drop
43
44 'Cause every time it rains
45 I fall to pieces
46 So many memories the rain releases
47 I feel you… I taste you
48 I cannot forget
49 Every time it rains… I get wet
50
51 On sunny days I'm all right
52 I walk in the light
53 And i try not to think about
54 The love I live without
55
56 But every time it rains
57 I fall to pieces
58 So many memories the rain releases
59 I feel you… I taste you
60 I cannot forget
61 Every time it rains… I get wet
62 'Cause every time it rains
63 I fall to pieces
64 So many memories the rain releases
65 I feel you… I taste you
66 I cannot forget
67 Every time it rains… I get wet
68 'Cause every time it rains
69 I fall to pieces
70 So many memories the rain releases
71 I feel you… I taste you
72 I cannot forget
73 Every time it rains… I get wet
74 </pre>
75 </div>
76 </body>
77 </html> </div> 下载源码 转载请注明:[于哲的博客][1] » [jQuery 抄袭笔记(10) : Toggle()(2)][2] [1]: http://lazynight.me [2]: http://lazynight.me/467.html