jQuery-切换2

Posted 极速小乌龟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery-切换2相关的知识,希望对你有一定的参考价值。

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4     <title>网页选项卡应用</title>
 5     <script type="text/javascript" 
 6             src="Jscript/jquery-1.8.2.min.js">
 7     </script>
 8     <style type="text/css">
 9            body{font-size:13px}
10            ul,li {margin:0;padding:0;list-style:none}
11            #menu li {text-align:center;float:left;padding:5px;
12                      margin-right:2px;width:50px;cursor:pointer}
13            #menu li.tabFocus {width:50px; font-weight:bold;
14                            background-color:#f3f2e7;border:solid 1px #666;
15                            border-bottom:0;z-index:100;position:relative}
16            #content {width:260px;height:80px;padding:10px;
17                      background-color:#f3f2e7;clear:left;
18                      border:solid 1px #666;position:relative;top:-1px}
19            #content li{display:none}
20            #content li.conFocus{display:block}
21     </style>
22     <script type="text/javascript">
23         $(function() {
24             $("#menu li").each(function(index) { //带参数遍历各个选项卡
25                 $(this).click(function() { //注册每个选卡的单击事件
26                     $("#menu li.tabFocus").removeClass("tabFocus"); //移除已选中的样式
27                     $(this).addClass("tabFocus"); //增加当前选中项的样式
28                     //显示选项卡对应的内容并隐藏未被选中的内容
29                     $("#content li:eq(" + index + ")").show()
30                     .siblings().hide();
31                 });
32             });
33         })
34     </script>
35 </head>
36 <body>
37      <ul id="menu">
38          <li class="tabFocus">家居</li>
39          <li>电器</li>
40          <li>二手</li>
41      </ul>
42      <ul id="content">
43          <li class="conFocus">我是家居的内容</li>
44          <li>欢迎您来到电器城</li>
45          <li>二手市场,产品丰富多彩</li>
46      </ul>
47 </body>
48 </html>

 

以上是关于jQuery-切换2的主要内容,如果未能解决你的问题,请参考以下文章

在jquery中切换动画

很实用的JQuery代码片段(转)

在片段之间切换时如何处理相机?

26个jQuery代码片段使用技巧

Javascript代码片段在drupal中不起作用

jQuery应用 代码片段