2016-03-15 147 views
0

实现了一个早期的问题,我问是不是最明确的方式问它,所以我试图简化它,并添加更多的细节,因为我想我知道我需要做什么只是不要不知道该怎么做。Javascript影响元素相邻的父

我有一个多级菜单 - HTML

<nav id="site-navigation" class="main-navigation" role="navigation"> 

<button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false">Menu</button>    
<div class="partial-refreshable-nav-menu partial-refreshable-nav-menu-1 menu-all-pages-container"> 
<ul id="primary-menu" class="nav-menu" aria-expanded="false"> 
    <li id="1636" class="menu-item"> 
     <a href="http://wpthemetestdata.wordpress.com/">Home</a></li> 
    <li id="1637" class="menu-item"> 
     <a href="http://localhost/frytest/blog/">Blog</a></li> 
    <li id="1638" class="menu-item"> 
     <a href="http://localhost/frytest/front-page/">Front Page</a></li> 
    <li id="1639" class="menu-item" aria-haspopup="true"> 
     <a href="http://localhost/frytest/about/">About The Tests</a> 
     <button class="dropdown-toggle" aria-expanded="true"> 
      <span class="screen-reader-text">expand child menu</span> 
     </button> 
     <ul class="sub-menu"> 
      <li id="1697" class="menu-item"> 
      <a href="http://localhost/frytest/about/page-image-alignment/">Page Image Alignment</a></li> 
      <li id="1698" class="menu-item"> 
      <a href="http://localhost/frytest/about/page-markup-and-formatting/">Page Markup And Formatting</a></li> 
      <li id="1640" class="menu-item"> 
      <a href="http://localhost/frytest/about/clearing-floats/">Clearing Floats</a></li> 
      <li id="1641" class="menu-item"> 
      <a href="http://localhost/frytest/about/page-with-comments/">Page with comments</a></li> 
      <li id="1642" class="menu-item"> 
      <a href="http://localhost/frytest/about/page-with-comments-disabled/">Page with comments disabled</a></li> 
     </ul> 
    </li> 
    <li id="1643" class="menu-item" aria-haspopup="true"> 
     <a href="http://localhost/frytest/level-1/">Level 1</a> 
     <button class="dropdown-toggle" aria-expanded="true"> 
      <span class="screen-reader-text">expand child menu</span> 
     </button> 
     <ul class="sub-menu"> 
      <li id="1644" class="menu-item" aria-haspopup="true"> 
       <a href="http://localhost/frytest/level-1/level-2/">Level 2</a> 
       <button class="dropdown-toggle" aria-expanded="true"> 
        <span class="screen-reader-text">expand child menu</span> 
       </button> 
       <ul class="sub-menu"> 
        <li id="1645" class="menu-item"> 
        <a href="http://localhost/frytest/level-1/level-2/level-3/">Level 3</a></li> 
        <li id="1699" class="menu-item"> 
        <a href="http://localhost/frytest/level-1/level-2/level-3a/">Level 3a</a></li> 
        <li id="1700" class="menu-item"> 
        <a href="http://localhost/frytest/level-1/level-2/level-3b/">Level 3b</a></li> 
       </ul> 
      </li> 
      <li id="1701" class="menu-item"> 
      <a href="http://localhost/frytest/level-1/level-2a/">Level 2a</a></li> 
      <li id="1702" class="menu-item"> 
      <a href="http://localhost/frytest/level-1/level-2b/">Level 2b</a></li> 
     </ul> 
    </li> 
    <li id="1646" class="menu-item"> 
     <a href="http://localhost/frytest/lorem-ipsum/">Lorem Ipsum</a></li> 
    <li id="1703" class="menu-item"> 
     <a href="http://localhost/frytest/page-a/">Page A</a></li> 
    <li id="1704" class="menu-item"> 
     <a href="http://localhost/frytest/page-b/">Page B</a></li> 
</ul> 
</div> 
</nav> 

具有附加的子菜单有一个按钮,用作打开和关闭所连接的元件切换中的每个元素。我一直在尝试对菜单的功能进行编程,并且遇到了一个棘手的问题。当点击下拉拨动这个JavaScript运行:

container.find('.dropdown-toggle').click( 
    function(e){ 

    var _this = $(this); 
    e.preventDefault(); 


    $('.dropdown-toggle.toggle-on').toggleClass('toggle-on'); 
    $('.sub-menu.toggled-on').toggleClass('toggled-on'); 

    _this.parents('.sub-menu').toggleClass('toggled-on'); 
    //This is the line that doesnt run 
    _this.parents('.dropdown-toggle').toggleClass('toggle-on'); 

    //toggles the chevron clicked to go on 
    _this.toggleClass('toggle-on'); 
    _this.next('.children, .sub-menu').toggleClass('toggled-on'); 
    //Below has no effect of expansion 
    _this.attr('aria-expanded', _this.attr('aria-expanded') === 'false' ? 'true' : 'false'); 

    _this.html(_this.html() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand); 
    } 
    ); 

行不工作是

_this.parents(".dropdown-toggle").toggleClass("toggle-on") 

它上面的线的工作,但这个没有。我认为这是因为虽然按钮层次高于单击的按钮,但它不会被视为父级,因为它与<ul>标记处于同一级别,而该标记会在上面的行中被选中。

我该如何去切换类的所有按钮直接上面点击一个?

回答

0

一种方法可能是上升2次,然后用按钮选择器下降1次。

我想这可能是这样的:

_this.parent().parent().children('button')

+0

嗨Axelduch,该感谢。我已经实现了它并进行了测试,它绝对适用于点击按钮正上方的菜单,但不适用于更高级别的菜单。从理论上讲,菜单选项可能有很多下拉级别,我希望这会影响所有父级别。我使用你的代码,但调整它使用父母方法搜索列表项,然后用按钮标签搜索孩子。例如_this.parents('li')。children('button')。addClass('toggle-on'); – ChazWick