首页 > 其他 > 详细

1116

时间:2015-11-16 22:37:55      阅读:222      评论:0      收藏:0      [点我收藏+]
 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
 2 
 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 4 <html xmlns="http://www.w3.org/1999/xhtml">
 5 <head>
 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 7 <title>无标题文档</title>
 8 
 9 <script type="application/javascript" src="js/jquery-1.11.3.js">
10 
11 </script>
12 
13 <script type="application/javascript">
14 $(document).ready(function(){
15     
16 $(#hide).click(function(){$(p).hide();});
17 $(#show).click(function(){$(p).show();});
18 
19 }
20 )
21 
22 
23 
24 
25 </script>
26 
27 </head>
28 
29 <body>
30 
31 <p>冒险</p>
32 
33 <input id="hide" type="button" value="隐藏" />
34 
35 
36 <input id="show" type="button" value="显示" />
37 
38 
39 <p>显示的内容</p>
40 <p class="a">显示的内容2</p>
41 <div class="a">div标签</div>
42 
43 
44 <input id="hide" onclick="$(this).click($(‘.a‘).fadeToggle(2000))" 
45 
46 type="button" value="隐藏" />
47 
48 <input id="show" onclick="$(this).click($(‘.a‘).show())" type="button" 
49 
50 value="显示" />
51 
52 </body>
53 </html>

 

1116

原文:http://www.cnblogs.com/ymf123/p/4970236.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!