显示全部品牌

来源:互联网 发布:智能手机如何设置网络 编辑:程序博客网 时间:2024/04/28 23:45
<!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><!--  http://www.lanrenzhijia.com/jquery/2701.html  --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>jquery全部和精简筛选相互切换</title><link rel="stylesheet" type="text/css" href="css/lanrenzhijia.css" /> <script src="js/jquery.js"></script><script>$(function(){     //  等待DOM加载完毕.var $category = $('ul li:gt(5):not(:last)');         //  获得索引值大于5的品牌集合对象(除最后一条)$category.hide();    //  隐藏上面获取到的jQuery对象。var $toggleBtn = $('div.showmore > a');             //  获取“显示全部品牌”按钮$toggleBtn.click(function(){  if($category.is(":visible")){$category.hide();                    //  隐藏$category$(this).find('span').css("background","url(images/down.gif) no-repeat 0 0")      .text("显示全部品牌");                  //改变背景图片和文本$('ul li').removeClass("promoted");// 去掉高亮样式  }else{$category.show();                    //  显示$category$(this).find('span').css("background","url(images/up.gif) no-repeat 0 0")      .text("精简显示品牌");                  //改变背景图片和文本$('ul li').filter(":contains('佳能'),:contains('尼康'),:contains('奥林巴斯')").addClass("promoted");//添加高亮样式  }return false;      //超链接不跳转})})</script></head><body><style>body{ padding-top:100px;}.baidu_ads{ width:960px; height:90px; position:absolute; left:50%; top:0; margin-left:-480px; overflow:hidden;}</style><div class="baidu_ads"><script type="text/javascript">var sogou_ad_id=395091;var sogou_ad_height=90;var sogou_ad_width=960;</script><script type='text/javascript' src='http://images.sohu.com/cs/jsfile/js/c.js'></script></div><span style="display:none;"><script src="http://s94.cnzz.com/stat.php?id=4106941&web_id=4106941" language="JavaScript"></script></span><div class="SubCategoryBox"><ul><li ><a href="#">佳能</a><i>(30440) </i></li><li ><a href="#">索尼</a><i>(27220) </i></li><li ><a href="#">三星</a><i>(20808) </i></li><li ><a href="#">尼康</a><i>(17821) </i></li><li ><a href="#">松下</a><i>(12289) </i></li><li ><a href="#">卡西欧</a><i>(8242) </i></li><li ><a href="#">富士</a><i>(14894) </i></li><li ><a href="#">柯达</a><i>(9520) </i></li><li ><a href="#">宾得</a><i>(2195) </i></li><li ><a href="#">理光</a><i>(4114) </i></li><li ><a href="#">奥林巴斯</a><i>(12205) </i></li><li ><a href="#">明基</a><i>(1466) </i></li><li ><a href="#">爱国者</a><i>(3091) </i></li><li ><a href="#">其它品牌相机</a><i>(7275) </i></li></ul><div class="showmore"><a href="more.html"><span>显示全部品牌</span></a></div></div></body></html>

0 0
原创粉丝点击