根據顯示的數量顯示相對應的內容

 1 <script type="text/javascript">
 2         $(document).ready(function(){
 3              $('a.submit').click(function(){
 4                  if($('input[value=是]').is(":checked")){
 5                      var lens=$('input[value=是]:checked').length;
 6                      switch (lens)
 7                         {
 8                         case 1:
 9                           $('.cons .ul04').eq(0).show().siblings().hide();
10                           break;
11                         case 2:
12                           $('.cons .ul04').eq(1).show().siblings().hide();
13                           break;
14                         case 3:
15                           $('.cons .ul04').eq(2).show().siblings().hide();
16                           break;
17                         case 4:
18                           $('.cons .ul04').eq(3).show().siblings().hide();
19                           break;
20                         case 5:
21                           $('.cons .ul04').eq(4).show().siblings().hide();
22                           break;
23                         case 6:
24                           $('.cons .ul04').eq(5).show().siblings().hide();
25                           break;
26                  }
27                     }})
28          })
29         </script>
View Code
相關文章
相關標籤/搜索