2010-01-12 21 views
12

Mam nawigację, która jest listą i zawiera podlisty i podlisty.Przenoszenie wielu rodziców w jQuery - bardziej efektywny sposób?

Zasadniczo nawigacja jest domyślnie zwinięta, ale jeśli użytkownik kliknie stronę znajdującą się w podliście, chcę wyświetlić listę nadrzędną. A jeśli jest to podlista podlisty, potrzebuję obu list nadrzędnych do pokazania. Mam to ustawione, ale nie podoba mi się dodawanie 5 .parent(). Parent() do góry, aby rozwinąć listę. Czy istnieje skuteczniejszy sposób?

HTML:

<div id="lesson-sidebar"> 
     <ul> 
      <li><a href="index.html">Welcome to Beat Basics and Beyond</a></li> 
      <li><a href="table-of-contents.html">What's in this course?</a></li> 
      <li><a href="defining-your-beat.html" class="active">Defining Your Beat</a> 
       <ul> 
        <li><a href="boundaries-of-your-beat.html">Boundaries of Your Beat</a></li> 
        <li><a href="the-beat-description.html">The Beat Description</a></li> 
        <li><a href="build-your-own-beat-description.html"><span class="ital">Activity:</span> Build Your Own Beat Description</a></li> 
       </ul> 
      </li> 
      <li><a href="getting-started.html">Getting Started</a> 
       <ul> 
        <li><a href="debrief-your-predecessor.html">Debrief Your Predecessor</a></li> 
        <li><a href="predecessor-top-five-tips.html"><span class="ital">Activity:</span> List The Top Five Tips From Your Predecessor</a></li> 
        <li><a href="covering-your-beat-with-the-internet.html">Covering Your Beat With The Internet</a></li> 
        <li><a href="get-in-the-car-and-go.html">Get in the Car and Go</a></li> 
        <li><a href="mapping-your-beat.html">Mapping Your Beat</a></li> 
        <li><a href="read-the-clips.html">Read the Clips</a></li> 
        <li><a href="activity-dissect-this-clip.html"><span class="ital">Activity:</span> Dissect This Clip</a></li> 
        <li><a href="writing-your-first-article.html">Writing Your First Article</a></li> 
        <li><a href="starting-cold-on-the-beat.html">Starting Cold on the Beat</a></li> 
       </ul>   
      </li> 
      <li><a href="working-with-sources.html">Working With Sources</a> 
       <ul> 
        <li><a href="finding-sources.html">Finding Sources</a></li> 
        <li><a href="diversify-your-sources.html">Diversify Your Sources</a></li> 
        <li><a href="prospecting-for-stories-and-sources.html">Prospecting for Stories and Sources</a></li> 
        <li><a href="building-relationships.html">Building Relationships</a></li> 
        <li><a href="going-off-the-record.html">Going Off the Record</a></li> 
       </ul> 
      </li> 
      <li><a href="developing-resources.html">Developing Resources to Help You on the Beat</a> 
       <ul> 
        <li><a href="develop-a-calendar-of-events.html">Develop a Calendar of Events</a></li> 
        <li><a href="build-your-library.html">Build Your Library</a></li> 
        <li><a href="learn-the-open-record-laws.html">Learn the Open Record Laws</a></li> 
       </ul> 
      </li> 
      <li><a href="extra-resources.html">Extra Resources</a> 
       <ul> 
        <li><a href="beat-breakdown-tool.html">Beat Breakdown Tool</a></li> 
        <li><a href="links-library.html">Links Library</a> 
         <ul> 
          <li><a href="general-resources-for-any-beat.html">General Resources for Any Beat</a></li> 
          <li><a href="courts-and-criminal-justice-links.html">Courts and Criminal Justice Links</a></li> 
          <li><a href="education-resources.html">Education Resources</a></li> 
          <li><a href="local-government-links.html">Local Government Links</a></li> 
          <li><a href="neighborhood-or-suburban-links.html">Neighborhood or Suburban Links</a></li> 
          <li><a href="police-and-public-safety-links.html">Police and Public Safety Links</a></li> 
          <li><a href="reporter-organizations.html">Reporter Organizations</a></li> 
         </ul> 
        </li> 
        <li><a href="additional-reading.html">Additional Reading</a></li> 
       </ul> 
      </li> 
      <li><a href="final-thoughts.html">Final Thoughts</a></li> 
     </ul> 

JQuery:

function toggleSubmenu() { 

    if ($(this).hasClass('submenu-hidden')) { 

     $(this).parent().children('ul').slideToggle(); 
     $(this).removeClass().addClass('submenu-visible'); 

    } else if ($(this).hasClass('submenu-visible')) { 

     $(this).parent().children('ul').slideToggle(); 
     $(this).removeClass().addClass('submenu-hidden'); 
    } 
} 

$('#lesson-sidebar ul ul').hide(); 
$('#lesson-sidebar ul ul ul').hide(); 
$('#lesson-sidebar ul:first-child').attr('id', 'rootlist'); 
$('#lesson-sidebar ul li:has("ul")').prepend('<span class="submenu-hidden"></span>').css('list-style','none'); 

$('#lesson-sidebar ul li a').each(
    function() { 
     if ($(this).hasClass('active')) { 
      // if it is a UL 
      var length = $(this).parent().find("ul").length; 
      alert(length); 
      if (length == 0) { 
       if ($(this).parent().parent().parent().children('span').hasClass('submenu-hidden')) { 
         $(this).parent().parent().parent().children('ul').show(); 
         $(this).parent().parent().parent().children('span').removeClass('submenu-hidden').addClass('submenu-visible'); 
       } 
       if ($(this).parent().parent().parent().parent().parent().children('span').hasClass('submenu-hidden')) { 
         $(this).parent().parent().parent().parent().parent().children('ul').show(); 
         $(this).parent().parent().parent().parent().parent().children('span').removeClass('submenu-hidden').addClass('submenu-visible'); 
       } 
      } 
      if (length == 1) { 
       $(this).parent().find('ul').slideToggle(); 
       $(this).parent().children('span').removeClass('submenu-hidden').addClass('submenu-visible'); 
      }    
     } 
    } 
); 

$('ul#rootlist > li span, ul#rootlist li ul li > span').bind('click', toggleSubmenu); 

Wszelka pomoc jest Majorly doceniane.

Odpowiedz

12

Jeśli rozumiem co próbujesz zrobić ... można zrobić coś takiego:

// For my benefit, hide all lists except the root items 
$('ul, li', $('#lesson-sidebar ul li')).hide(); 

// Show active parents and their siblings 
$('li a.active').parents('ul, li').each(function() { 
    $(this).siblings().andSelf().show(); 
}); 

// Show the active item and its siblings 
$('li a.active').siblings().andSelf().show(); 

W parents() i siblings() metody są zarówno dobre dla tego rodzaju rzeczy.

Edycja: Nie było błąd, zanim nie pokazano rodzica rodzica. Wypróbuj tę nową wersję.

Edytuj 2: Teraz działa z klasą = "aktywną" na kotwicy zamiast na pozycji listy.

+0

To jest dość dużo, co szukam. Sprawa rodziców jest niesamowita !! Znalazłem rozwiązanie przy użyciu metody: eq, ale to jest o wiele czystsze. Jedyna rzecz to to, że nie jest li.aktywna, jest a.aktywna, więc nadal staram się zachęcić rodzeństwo do pokazania. Dziękuję bardzo: D –

+0

Po prostu zmieniłem go, aby pracować z a.active. Pamiętaj, aby zagłosować i nacisnąć zielony znacznik wyboru obok odpowiedzi, jeśli to działa. :) –

+0

Sprawdzone i głosował w górę. Twoja szybka i jasna odpowiedź była ogromną pomocą. –

16

$(this).closest("ul") będzie przechodzić przez rodziców dopóki nie znajdzie ul

http://docs.jquery.com/Traversing/closest#expr

... dostać pierwszy element pasujący do selektora testując element się i przechodzenie w górę przez jej przodków w DOM drzewo ...

0

$(this).parents().get()[4] daje piąte

3

Aby uprościć bardzo użytecznej odpowiedzi Lance McNeary za, sztuką jest użyć:

.parents([selector]) 

podany obiekt jQuery, która reprezentuje zestaw elementów DOM Z .parents() metoda pozwala nam szukać przez przodków tych elementów w drzewie DOM i skonstruuj nowy obiekt jQuery z elementów dopasowujących uporządkowanych od bezpośredniego elementu nadrzędnego w górę; elementy są zwracane w kolejności od najbliższego z rodziców do zewnętrznych.

Inny użytkownik zasugerował:

.closest([selector]) 

podobne do .parents(), to może być lepszym wyborem, ponieważ zatrzymuje się kiedyś znajdzie element jest szukasz. Wydaje się, że byłby bardziej wydajny w tym przypadku. Aby uzyskać więcej informacji, zobacz http://api.jquery.com/closest/. Mam nadzieję, że pomoże to zrozumieć różnice pomiędzy .closest() i .parents() oraz jak potężna i elastyczna może być jQuery.

+0

Nie zmieniaj innych odpowiedzi. Nowa odpowiedź to wprowadzenie nowego pomysłu. Prosimy o komentarz lub sugerowanie zmian, jeśli coś wymaga poprawy. –

+1

Myślę, że odpowiedź Michaela jest czystsza. Pomagało, gdy nie mogłem zrozumieć punktu w odpowiedzi Lance'a. –

-1

Spróbuj z tej linii kodu:

$(this).parent().parent().fadeOut(); 
+2

Proszę podać wyjaśnienie dla swojej odpowiedzi. –

Powiązane problemy