【前端积累】点击切换显示内容
生活随笔
收集整理的這篇文章主要介紹了
【前端积累】点击切换显示内容
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1 <!DOCTYPE html>
2 <html>
3 <head lang="en">
4 <meta charset="UTF-8">
5 <title>切換顯示內容</title>
6 <style type="text/css">
7 *{ margin:0; padding:0;}
8 body {font-size:12px;text-align:center;}
9 a { color:#04D; text-decoration:none;}
10 a:hover { color:#F50; text-decoration:underline;}
11 .SubCategoryBox {width:600px; margin:0 auto; text-align:center;margin-top:40px;}
12 .SubCategoryBox ul { list-style:none;}
13 .SubCategoryBox ul li { display:block; float:left; width:200px; line-height:20px;}
14 .showmore { clear:both; text-align:center;padding-top:10px;}
15 .showmore a { display:block; width:120px; margin:0 auto; line-height:24px; border:1px solid #AAA;}
16 .showmore a span { padding-left:15px; background:url(img/down.gif) no-repeat 0 0;}
17 .promoted a { color:#F50;}
18 </style>
19 <script src="../jquery/jquery-3.1.1.js" type="text/javascript"></script>
20 <!--
21 :visible:匹配所有的可見元素
22 find(expr|obj|ele)搜索與指定表達式匹配的元素
23 filter(expr|obj|ele|fn):篩選出與指定表達式匹配的元素集合。
24 -->
25 <script type="text/javascript">
26 $(function(){ // 等待DOM加載完畢.
27 var $category = $('ul li:gt(5):not(:last)'); // 獲得索引值大于5的品牌集合對象(除最后一條)
28 $category.hide(); // 隱藏上面獲取到的jQuery對象。
29 var $toggleBtn = $('div.showmore > a'); // 獲取“顯示全部品牌”按鈕
30 /*$toggleBtn.click(
31 function(){
32 $category.show(); // 顯示$category
33 $(this).find("span")
34 .css("background","url(img/up.gif) no-repeat 0 0")
35 .text("精簡顯示品牌"); //改變背景圖片和文本
36 $('ul li').filter(":contains('佳能'),:contains('尼康'),:contains('奧林巴斯')")
37 .addClass("promoted"); //添加高亮樣式
38 return false; //超鏈接不跳轉
39 })*/
40 $toggleBtn.click(function () {
41 if($category.is(":visible")){
42 $category.hide();
43 $(this).find('span').css("background","url(img/down.gif)no-repeat 0 0").text("顯示全部品牌");//改變背景圖片和文本
44 $('ul li').removeClass("promoted");//去掉高亮顯示
45 }else{
46 $category.show();
47 $(this).find('span').css("background","url(img/up.gif)no-repeat 0 0").text("精簡顯示品牌");
48 $('ul li').filter(":contains('佳能'),:contains('尼康'),:contains('奧林巴斯')").addClass("promoted");//添加高亮顯示
49 }
50 return false;//超鏈接不跳轉
51 })
52 })
53 </script>
54 </head>
55 <body>
56 <div class="SubCategoryBox">
57 <ul>
58 <li ><a href="#">佳能</a><i>(30440) </i></li>
59 <li ><a href="#">索尼</a><i>(27220) </i></li>
60 <li ><a href="#">三星</a><i>(20808) </i></li>
61 <li ><a href="#">尼康</a><i>(17821) </i></li>
62 <li ><a href="#">松下</a><i>(12289) </i></li>
63 <li ><a href="#">卡西歐</a><i>(8242) </i></li>
64 <li ><a href="#">富士</a><i>(14894) </i></li>
65 <li ><a href="#">柯達</a><i>(9520) </i></li>
66 <li ><a href="#">賓得</a><i>(2195) </i></li>
67 <li ><a href="#">理光</a><i>(4114) </i></li>
68 <li ><a href="#">奧林巴斯</a><i>(12205) </i></li>
69 <li ><a href="#">明基</a><i>(1466) </i></li>
70 <li ><a href="#">愛國者</a><i>(3091) </i></li>
71 <li ><a href="#">其它品牌相機</a><i>(7275) </i></li>
72 </ul>
73 <div class="showmore">
74 <a href="more.html"><span>顯示全部品牌</span></a>
75 </div>
76 </div>
77 </body>
78 </html>
?
轉載于:https://www.cnblogs.com/dream-to-pku/p/6019225.html
總結
以上是生活随笔為你收集整理的【前端积累】点击切换显示内容的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Mac OS X 在Finder新建文本
- 下一篇: redis集群报错